| 41 | } |
| 42 | |
| 43 | int64_t Blob::Size() const noexcept |
| 44 | { |
| 45 | if (mBlob == nullptr) |
| 46 | return 0; |
| 47 | |
| 48 | return sqlite3_blob_bytes(mBlob); |
| 49 | } |
| 50 | |
| 51 | int64_t |
| 52 | Blob::Read(void* buffer, int64_t offset, int64_t bufferSize) const noexcept |
no outgoing calls
no test coverage detected