| 94 | } |
| 95 | |
| 96 | void bindText(const char *txt) { |
| 97 | sqlite3_bind_text(hStmt, iBindIdx, txt, -1, nullptr); |
| 98 | iBindIdx++; |
| 99 | } |
| 100 | |
| 101 | void bindInt64(sqlite3_int64 v) { |
| 102 | sqlite3_bind_int64(hStmt, iBindIdx, v); |
no outgoing calls
no test coverage detected