| 75 | } |
| 76 | |
| 77 | void DsqlStatement::doRelease() |
| 78 | { |
| 79 | setSqlText(nullptr); |
| 80 | setOrgText(nullptr, 0); |
| 81 | |
| 82 | if (scratch && shouldPreserveScratch()) |
| 83 | dsqlAttachment->deletePool(&scratch->getPool()); |
| 84 | } |
| 85 | |
| 86 | void DsqlStatement::setOrgText(const char* ptr, ULONG len) |
| 87 | { |
nothing calls this directly
no test coverage detected