| 265 | |
| 266 | |
| 267 | PreparedStatement::PreparedStatement(thread_db* tdbb, MemoryPool& pool, |
| 268 | Attachment* attachment, jrd_tra* transaction, const string& text, |
| 269 | bool isInternalRequest) |
| 270 | : PermanentStorage(pool), |
| 271 | builder(NULL), |
| 272 | inValues(pool), |
| 273 | outValues(pool), |
| 274 | inMetadata(FB_NEW Firebird::MsgMetadata), |
| 275 | outMetadata(FB_NEW Firebird::MsgMetadata), |
| 276 | inMessage(pool), |
| 277 | outMessage(pool), |
| 278 | resultSet(NULL) |
| 279 | { |
| 280 | init(tdbb, attachment, transaction, text, isInternalRequest); |
| 281 | } |
| 282 | |
| 283 | |
| 284 | PreparedStatement::PreparedStatement(thread_db* tdbb, MemoryPool& pool, |