| 299 | |
| 300 | |
| 301 | PreparedStatement::~PreparedStatement() |
| 302 | { |
| 303 | thread_db* tdbb = JRD_get_thread_data(); |
| 304 | |
| 305 | DSQL_free_statement(tdbb, dsqlRequest, DSQL_drop); |
| 306 | |
| 307 | if (resultSet) |
| 308 | resultSet->stmt = NULL; |
| 309 | } |
| 310 | |
| 311 | |
| 312 | void PreparedStatement::init(thread_db* tdbb, Attachment* attachment, jrd_tra* transaction, |
nothing calls this directly
no test coverage detected