Clears away all the bindings of a prepared statement (can be associated with #reset() above).
| 70 | |
| 71 | // Clears away all the bindings of a prepared statement (can be associated with #reset() above). |
| 72 | void Statement::clearBindings() |
| 73 | { |
| 74 | const int ret = sqlite3_clear_bindings(getPreparedStatement()); |
| 75 | check(ret); |
| 76 | } |
| 77 | |
| 78 | int Statement::getIndex(const char * const apName) const |
| 79 | { |
no test coverage detected