zig-sqlite icon indicating copy to clipboard operation
zig-sqlite copied to clipboard

Simple, low-level, explicitly-typed SQLite bindings for Zig.

Results 4 zig-sqlite issues
Sort by recently updated
recently updated
newest added

I haven't thought this through, but what if we could do something like this to distinguish between `text` and `blob` internally: ``` pub const Type = union(TypeTag) { blob: std.builtin.Type.Pointer,...

Maybe I'm reading this incorrectly but can `Binding.parseStruct` produce undefined behavior since it's returning a locally defined array of structs?

It would be very nice for `zig-sqlite` to deal with converting enums to ints and back on its own. Having to write this at call site causes unnecessary boilerplate. As...