| 82 | int execute() { return sqlite3_step(hStmt); } |
| 83 | |
| 84 | void bindNull() { |
| 85 | sqlite3_bind_null(hStmt, iBindIdx); |
| 86 | iBindIdx++; |
| 87 | } |
| 88 | |
| 89 | void bindText(const char *txt) { |
| 90 | sqlite3_bind_text(hStmt, iBindIdx, txt, -1, nullptr); |
no outgoing calls
no test coverage detected