zig-sqlite
zig-sqlite copied to clipboard
zig-sqlite is a small wrapper around sqlite's C API, making it easier to use with Zig.
Say I have a table entry structure something like the following: ```zig const User = struct { id: usize, name: []const u8, age: usize, }; ``` And I want to...
Hi, If I understand correctly, then the linking was switched by mistake from dynamic to static and then switched back to static on the main branch, but not on 0.15.1,...
This PR adds an option for define setting SQLITE_THREADSAFE. It's mainly intended for compiling SQLite for WebAssembly, where thread-safety defaults to off.
sqlite-example zig build install └─ install sqlite-example └─ compile exe sqlite-example Debug native failure error: the following command terminated unexpectedly: /Users/enver/zig/zig build-exe -ODebug --dep sqlite -Mroot=/Users/enver/Projects/zig/sqlite-example/src/main.zig .zig-cache/o/010cecb204293f2dffed29a93cf0a23e/libsqlite.dylib -rpath .zig-cache/o/010cecb204293f2dffed29a93cf0a23e -I...
I'm dealing with an old file format where sqlite is used to fetch BLOBs of zlib-compressed data. As far as I can tell, zig-sqlite has only one way I can...