| 224 | } |
| 225 | |
| 226 | int Close() noexcept |
| 227 | { |
| 228 | if (mBlob == nullptr) |
| 229 | return SQLITE_OK; |
| 230 | |
| 231 | const int rc = sqlite3_blob_close(mBlob); |
| 232 | |
| 233 | mBlob = nullptr; |
| 234 | |
| 235 | return rc; |
| 236 | } |
| 237 | |
| 238 | int Write(const void* ptr, int size) noexcept |
| 239 | { |
no outgoing calls
no test coverage detected