| 1960 | // |
| 1961 | |
| 1962 | static void gen_dyn_close( const act* action) |
| 1963 | { |
| 1964 | TEXT s[MAX_CURSOR_SIZE]; |
| 1965 | |
| 1966 | const dyn* statement = (dyn*) action->act_object; |
| 1967 | make_name_formatted(s, "ISC-CONST-%s", statement->dyn_cursor_name); |
| 1968 | printa(names[COLUMN], true, "CALL \"%s\" USING %s, %s", |
| 1969 | ISC_CLOSE, status_vector(action), s); |
| 1970 | set_sqlcode(action); |
| 1971 | } |
| 1972 | |
| 1973 | |
| 1974 | //____________________________________________________________ |
no test coverage detected