diff options
author | Martin Ashby <martin@ashbysoft.com> | 2023-09-03 20:32:51 +0100 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2023-09-03 20:32:51 +0100 |
commit | 2c4ac3819b8c42de1410fd524c2c9d08d937ec70 (patch) | |
tree | 570d63ee4c92d69c96c5d21bfb2be3adb35376a6 /README.md | |
download | sql-zig-2c4ac3819b8c42de1410fd524c2c9d08d937ec70.tar.gz sql-zig-2c4ac3819b8c42de1410fd524c2c9d08d937ec70.tar.bz2 sql-zig-2c4ac3819b8c42de1410fd524c2c9d08d937ec70.tar.xz sql-zig-2c4ac3819b8c42de1410fd524c2c9d08d937ec70.zip |
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..5e118f9 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# sql-zig + +Database abstraction layer. + +Somewhat inspired by java's JDBC or golang's database/sql package. Provides an interface to databases. + +TODO +[ ] Binding values in statements +[ ] Reading structs rather than individual columns. Zig's comptime will help a lot here. +[ ] Comptime query checking and codegen like go's sqlc or rust's sqlx +[ ] Docs and more tests +[ ] Pooling? +[ ] Optional compilation with various combinations of databases
\ No newline at end of file |