| 89 | int execute() { return sqlite3_step(hStmt); } |
| 90 | |
| 91 | void bindNull() { |
| 92 | sqlite3_bind_null(hStmt, iBindIdx); |
| 93 | iBindIdx++; |
| 94 | } |
| 95 | |
| 96 | void bindText(const char *txt) { |
| 97 | sqlite3_bind_text(hStmt, iBindIdx, txt, -1, nullptr); |
no outgoing calls
no test coverage detected