| 39 | } |
| 40 | |
| 41 | void firebird_statement_backend::alloc() |
| 42 | { |
| 43 | ISC_STATUS stat[ISC_STATUS_LENGTH]; |
| 44 | |
| 45 | if (isc_dsql_allocate_statement(stat, &session_.dbhp_, &stmtp_)) |
| 46 | { |
| 47 | throw_iscerror(stat); |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | void firebird_statement_backend::clean_up() |
| 52 | { |
nothing calls this directly
no test coverage detected