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

zig-sqlite is a small wrapper around sqlite's C API, making it easier to use with Zig.

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

Initial work on virtual tables. The goal is to be able to easily create virtual tables using Zig and expose as little as possible of the C-ism of the raw...

We can now build loadable extension but there's no documentation, we should write some.

documentation

We can now implement virtual tables but there's no documentation and it's not self-explanatory so we should write some.

documentation

I have followed the instructions on the readme page to install the package. It works when the database file already exists but fails when there's no file. Here I have...

This allows to keep SQL queries in a separate file where spaces and newlines are very common.

# Description With the recent Zig build system changes, Modules now work much like CMake library targets, in that settings applied to one module are applied to any other module...

copied from https://github.com/ericsink/wasm2cil/tree/master/sqlite3

Imagine I have a `UNIQUE` constraint in my Db. I may use the error that the prepared statement generates to detect that the value I'm trying to insert is already...

My custom struct is a wrapper around a `[26]u8` ``` pub const ID = struct { data: [26]u8, // .. various helper methods to generate IDs /// Turn ID into...