| 1833 | // |
| 1834 | |
| 1835 | static void gen_dyn_close( const act* action) |
| 1836 | { |
| 1837 | TEXT s[MAX_CURSOR_SIZE]; |
| 1838 | |
| 1839 | const dyn* statement = (dyn*) action->act_object; |
| 1840 | make_name_formatted(s, "ISC-CONST-%s", statement->dyn_cursor_name); |
| 1841 | printa(names[COLUMN], true, "CALL \"%s\" USING %s, %s%s", |
| 1842 | ISC_CLOSE, status_vector(action), BY_REF, s); |
| 1843 | set_sqlcode(action); |
| 1844 | } |
| 1845 | |
| 1846 | |
| 1847 | //____________________________________________________________ |
no test coverage detected