| 1631 | // |
| 1632 | |
| 1633 | static void gen_dyn_declare(const act* action) |
| 1634 | { |
| 1635 | TEXT s1[MAX_CURSOR_SIZE], s2[MAX_CURSOR_SIZE]; |
| 1636 | |
| 1637 | const dyn* statement = (const dyn*) action->act_object; |
| 1638 | printa(COLUMN, "CALL %s (isc_status, %s, %s)", |
| 1639 | ISC_EMBED_DSQL_DECLARE, |
| 1640 | make_name(s1, statement->dyn_statement_name), |
| 1641 | make_name(s2, statement->dyn_cursor_name)); |
| 1642 | status_and_stop(action); |
| 1643 | } |
| 1644 | |
| 1645 | |
| 1646 | //____________________________________________________________ |
no test coverage detected