| 2417 | |
| 2418 | |
| 2419 | void Attachment::setIdleTimeout(CheckStatusWrapper* status, unsigned int timeOut) |
| 2420 | { |
| 2421 | string stmt; |
| 2422 | stmt.printf("SET SESSION IDLE TIMEOUT %lu", timeOut); |
| 2423 | |
| 2424 | execWithCheck(status, stmt); |
| 2425 | } |
| 2426 | |
| 2427 | |
| 2428 | unsigned int Attachment::getStatementTimeout(CheckStatusWrapper* status) |