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