Whenever this is used, db->RemoveStatement must be invoked beforehand.
| 25 | |
| 26 | // Whenever this is used, db->RemoveStatement must be invoked beforehand. |
| 27 | void Statement::CloseHandles() { |
| 28 | if (alive) { |
| 29 | alive = false; |
| 30 | sqlite3_finalize(handle); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | // Returns the Statement's bind map (creates it upon first execution). |
| 35 | BindMap& Statement::GetBindMap(Napi::Env env) { |
nothing calls this directly
no outgoing calls
no test coverage detected