diff options
| author | 2021-01-31 17:08:27 +0100 | |
|---|---|---|
| committer | 2021-01-31 17:08:27 +0100 | |
| commit | f452be6d29c7c86645adecdceebe9686c4cba48f (patch) | |
| tree | b6ee271ed1fc4a9edad638ebe2c20b8989d2469e /query.zig | |
| parent | add the Db.getLastInsertRowID method (diff) | |
| parent | add Blob.reopen (diff) | |
| download | zig-sqlite-f452be6d29c7c86645adecdceebe9686c4cba48f.tar.gz zig-sqlite-f452be6d29c7c86645adecdceebe9686c4cba48f.tar.xz zig-sqlite-f452be6d29c7c86645adecdceebe9686c4cba48f.zip | |
Merge pull request #10 from vrischmann/incremental-blob-io
implement incremental blob io
Diffstat (limited to '')
| -rw-r--r-- | query.zig | 3 |
1 files changed, 1 insertions, 2 deletions
| @@ -3,8 +3,7 @@ const std = @import("std"); | |||
| 3 | const mem = std.mem; | 3 | const mem = std.mem; |
| 4 | const testing = std.testing; | 4 | const testing = std.testing; |
| 5 | 5 | ||
| 6 | /// Blob is used to represent a SQLite BLOB value when binding a parameter or reading a column. | 6 | const Blob = @import("sqlite.zig").Blob; |
| 7 | pub const Blob = struct { data: []const u8 }; | ||
| 8 | 7 | ||
| 9 | /// Text is used to represent a SQLite TEXT value when binding a parameter or reading a column. | 8 | /// Text is used to represent a SQLite TEXT value when binding a parameter or reading a column. |
| 10 | pub const Text = struct { data: []const u8 }; | 9 | pub const Text = struct { data: []const u8 }; |