| 97 | } |
| 98 | |
| 99 | void bindBlob(const void *blob, size_t blob_size) { |
| 100 | sqlite3_bind_blob(hStmt, iBindIdx, blob, static_cast<int>(blob_size), |
| 101 | nullptr); |
| 102 | iBindIdx++; |
| 103 | } |
| 104 | |
| 105 | const char *getText() { |
| 106 | auto ret = sqlite3_column_text(hStmt, iResIdx); |