zig-sqlite
zig-sqlite copied to clipboard
Simple, low-level, explicitly-typed SQLite bindings for Zig.
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...