sql-zig

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

README.md (441B)


      1 # sql-zig
      2 
      3 Database abstraction layer.
      4 
      5 Somewhat inspired by java's JDBC or golang's database/sql package. Provides an interface to databases.
      6 
      7 TODO
      8 [ ] Binding values in statements
      9 [ ] Reading structs rather than individual columns. Zig's comptime will help a lot here.
     10 [ ] Comptime query checking and codegen like go's sqlc or rust's sqlx
     11 [ ] Docs and more tests
     12 [ ] Pooling?
     13 [ ] Optional compilation with various combinations of databases