/******************************************************************************/ /* File : pr_delete.cc */ /* Schema : bdeschema.sch */ /* GENCPP Version : Chgen V 12 - Sathya */ /******************************************************************************/ #include #include "bdeschema.h" #include "SVschema.h" #include "TTschema.h" #include "TAschema.h" #include "VVschema.h" #include "TSschema.h" #include "FOschema.h" #include "GDschema.h" #include "HGschema.h" #include "HNschema.h" #include "HAschema.h" #include "HLschema.h" #include "HPschema.h" #include "HIschema.h" #include "CGschema.h" #include "GXschema.h" #ifndef USE_STL /******************************************************************************/ /* Description: This routine is used to delete a row in btree. */ /* Input: the special table name and its pkey value. */ /* *temp1 is the table name. temp2 is the pkey value. */ /* Output: none.( it will delete the specific row from btree. ) */ /******************************************************************************/ void pr_del_bt(char *temp1, hcg_key temp2) { int tbl_encoding, finish=FALSE ; hcg_key result; pr_find_bt( temp1, &temp2); tbl_encoding = encoding( hcg_table_seq_list[hcg_tbl_idx].ttabbrev ); switch( tbl_encoding ) { } } #endif /* USE_STL */