| 1615 | // |
| 1616 | |
| 1617 | static void gen_dyn_close(const act* action) |
| 1618 | { |
| 1619 | TEXT s[MAX_CURSOR_SIZE]; |
| 1620 | |
| 1621 | const dyn* statement = (const dyn*) action->act_object; |
| 1622 | printa(COLUMN, "CALL %s (isc_status, %s)", |
| 1623 | ISC_EMBED_DSQL_CLOSE, make_name(s, statement->dyn_cursor_name)); |
| 1624 | status_and_stop(action); |
| 1625 | } |
| 1626 | |
| 1627 | |
| 1628 | //____________________________________________________________ |
no test coverage detected