diff options
Diffstat (limited to 'query.zig')
| -rw-r--r-- | query.zig | 4 |
1 files changed, 1 insertions, 3 deletions
| @@ -3,9 +3,7 @@ const mem = std.mem; | |||
| 3 | const testing = std.testing; | 3 | const testing = std.testing; |
| 4 | 4 | ||
| 5 | const Blob = @import("sqlite.zig").Blob; | 5 | const Blob = @import("sqlite.zig").Blob; |
| 6 | 6 | const Text = @import("sqlite.zig").Text; | |
| 7 | /// Text is used to represent a SQLite TEXT value when binding a parameter or reading a column. | ||
| 8 | pub const Text = struct { data: []const u8 }; | ||
| 9 | 7 | ||
| 10 | const BindMarker = struct { | 8 | const BindMarker = struct { |
| 11 | /// Contains the expected type for a bind parameter which will be checked | 9 | /// Contains the expected type for a bind parameter which will be checked |