| 2436 | |
| 2437 | |
| 2438 | void Attachment::setStatementTimeout(CheckStatusWrapper* status, unsigned int timeOut) |
| 2439 | { |
| 2440 | string stmt; |
| 2441 | stmt.printf("SET STATEMENT TIMEOUT %lu", timeOut); |
| 2442 | |
| 2443 | execWithCheck(status, stmt); |
| 2444 | } |
| 2445 | |
| 2446 | |
| 2447 | Batch* Attachment::createBatch(CheckStatusWrapper* status, ITransaction* transaction, |