| 1612 | // |
| 1613 | |
| 1614 | static void gen_drop_database( const act* action, int column) |
| 1615 | { |
| 1616 | ObjectNotImplemented(); |
| 1617 | const gpre_dbb* db = (gpre_dbb*) action->act_object; |
| 1618 | align(column); |
| 1619 | |
| 1620 | fprintf(gpreGlob.out_file, "isc_drop_database (%s, %" SIZEFORMAT", \"%s\", rdb$k_db_type_gds);", |
| 1621 | status_vector(action), |
| 1622 | strlen(db->dbb_filename), db->dbb_filename); |
| 1623 | set_sqlcode(action, column); |
| 1624 | } |
| 1625 | |
| 1626 | |
| 1627 | //____________________________________________________________ |
no test coverage detected