| 99 | } |
| 100 | |
| 101 | void bindInt64(sqlite3_int64 v) { |
| 102 | sqlite3_bind_int64(hStmt, iBindIdx, v); |
| 103 | iBindIdx++; |
| 104 | } |
| 105 | |
| 106 | void bindBlob(const void *blob, size_t blob_size) { |
| 107 | sqlite3_bind_blob(hStmt, iBindIdx, blob, static_cast<int>(blob_size), |
no outgoing calls
no test coverage detected