| 18 | } |
| 19 | |
| 20 | void db2_statement_backend::alloc() |
| 21 | { |
| 22 | SQLRETURN cliRC = SQL_SUCCESS; |
| 23 | |
| 24 | cliRC = SQLAllocHandle(SQL_HANDLE_STMT,session_.hDbc,&hStmt); |
| 25 | if (cliRC != SQL_SUCCESS) { |
| 26 | throw db2_soci_error("Error while allocation statement handle",cliRC); |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | void db2_statement_backend::clean_up() |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected