| 1578 | // |
| 1579 | |
| 1580 | static void gen_drop_database( const act* action, int column) |
| 1581 | { |
| 1582 | const gpre_dbb* db = (gpre_dbb*) action->act_object; |
| 1583 | align(column); |
| 1584 | |
| 1585 | fprintf(gpreGlob.out_file, "isc_drop_database (%s, %" SIZEFORMAT", \"%s\", rdb$k_db_type_gds);", |
| 1586 | status_vector(action), |
| 1587 | strlen(db->dbb_filename), db->dbb_filename); |
| 1588 | set_sqlcode(action, column); |
| 1589 | } |
| 1590 | |
| 1591 | |
| 1592 | //____________________________________________________________ |
no test coverage detected