| 92 | } |
| 93 | |
| 94 | void bindInt64(sqlite3_int64 v) { |
| 95 | sqlite3_bind_int64(hStmt, iBindIdx, v); |
| 96 | iBindIdx++; |
| 97 | } |
| 98 | |
| 99 | void bindBlob(const void *blob, size_t blob_size) { |
| 100 | sqlite3_bind_blob(hStmt, iBindIdx, blob, static_cast<int>(blob_size), |
no outgoing calls
no test coverage detected