| 363 | |
| 364 | |
| 365 | void PreparedStatement::execute(thread_db* tdbb, jrd_tra* transaction) |
| 366 | { |
| 367 | fb_assert(resultSet == NULL); |
| 368 | |
| 369 | if (builder) |
| 370 | builder->moveToStatement(tdbb, this); |
| 371 | |
| 372 | DSQL_execute(tdbb, &transaction, dsqlRequest, inMetadata, inMessage.begin(), NULL, NULL); |
| 373 | } |
| 374 | |
| 375 | |
| 376 | void PreparedStatement::open(thread_db* tdbb, jrd_tra* transaction) |
nothing calls this directly
no test coverage detected