| 107 | } |
| 108 | |
| 109 | void used(bool state) { |
| 110 | if(execution_started == true && state == true) { |
| 111 | throw errors::reexecution("Already used statement executed again! Please reset() first!",sql()); |
| 112 | } |
| 113 | execution_started = state; |
| 114 | } |
| 115 | bool used() const { return execution_started; } |
| 116 | |
| 117 | private: |
nothing calls this directly
no test coverage detected