| 66 | } |
| 67 | |
| 68 | int NextAnonIndex() { |
| 69 | while (sqlite3_bind_parameter_name(handle, ++anon_index) != NULL) {} |
| 70 | return anon_index; |
| 71 | } |
| 72 | |
| 73 | // Binds the value at the given index or throws an appropriate error. |
| 74 | void BindValue(Napi::Env env, Napi::Value value, int index) { |
nothing calls this directly
no outgoing calls
no test coverage detected