| 89 | } |
| 90 | |
| 91 | void sql_bind_int(sqlite3* db, sqlite3_stmt* stmt, const char* name, int value) |
| 92 | { |
| 93 | sqlCheck(db, |
| 94 | sqlite3_bind_int( |
| 95 | stmt, sqlite3_bind_parameter_index(stmt, name), value)); |
| 96 | } |
| 97 | |
| 98 | void sql_bind_string( |
| 99 | sqlite3* db, sqlite3_stmt* stmt, const char* name, const char* value) |
no test coverage detected