summaryrefslogtreecommitdiff
path: root/sqlite.zig (unfollow)
Commit message (Expand)AuthorFilesLines
2021-08-11update tests for new use of `Db.init`Gravatar Meghan Denny1-6/+2
2021-08-11adding allocator to Db.QueryOptions was a mistakeGravatar Meghan Denny1-1/+0
2021-08-09move the documentation to Db.openBlob since that is the method user will callGravatar Vincent Rischmann1-19/+26
2021-08-09clarify Blob.openGravatar Vincent Rischmann1-0/+1
2021-08-09document the ZeroBlob typeGravatar Vincent Rischmann1-0/+17
2021-08-09clarify the OpenFlagsGravatar Vincent Rischmann1-0/+5
2021-08-09clarify Mode documentationGravatar Vincent Rischmann1-0/+4
2021-08-09clarify bind marker len compile errorGravatar Meghan Denny1-1/+4
2021-08-09options asks for `allocator` field but its not thereGravatar Meghan Denny1-0/+1
2021-08-09iterator- pass along options objectGravatar Meghan Denny1-1/+1
2021-08-09make `init` return a Self instead of updating a pointerGravatar Meghan Denny1-3/+3
2021-08-02modify exec to take a QueryOptionsGravatar Vincent Rischmann1-21/+47
2021-06-25fix 'unused variable' errorsGravatar Vincent Rischmann1-6/+1
2021-06-25fix 'redundant comptile' errorGravatar Vincent Rischmann1-2/+2
2021-06-25fix 'unused function parameter' errorGravatar Vincent Rischmann1-0/+5
2021-05-30set the eval branch quota in the return type blockGravatar Vincent Rischmann1-5/+10
2021-05-09all: fix tests for latest zigGravatar Vincent Rischmann1-77/+77
2021-05-03attempt to make the threading mode error clearerGravatar Vincent Rischmann1-1/+1
2021-04-27workaround compiler bugGravatar Vincent Rischmann1-3/+9
2021-04-23fix error nameGravatar Vincent Rischmann1-1/+1
2021-04-23Allow reading into static size arrays as long as size matchesGravatar daurnimator1-11/+12
2021-04-17improve logs in Statement.deinit and Statement.resetGravatar Vincent Rischmann1-3/+6
2021-04-17fix DetailedError and Diagnostics formattingGravatar Vincent Rischmann1-4/+8
2021-04-17replace the pragma argument with a nullable stringGravatar Vincent Rischmann1-18/+15
2021-04-17fix documentationGravatar Vincent Rischmann1-1/+1
2021-02-27simplify iterator usage in code and docGravatar Vincent Rischmann1-10/+5
2021-02-27add DiagnosticsGravatar Vincent Rischmann1-11/+130
2021-02-27store the database handle in Iterator and StatementGravatar Vincent Rischmann1-0/+4
2021-01-31add Blob.reopenGravatar Vincent Rischmann1-17/+53
2021-01-31add incremental i/o on blobGravatar Vincent Rischmann1-0/+204
2021-01-31add the Db.getLastInsertRowID methodGravatar Vincent Rischmann1-1/+24
2021-01-24rework of the test database initializationGravatar Vincent Rischmann1-45/+48
2021-01-06allow binding and reading optionalsGravatar Vincent Rischmann1-2/+32
2021-01-06add a test for optionalsGravatar Vincent Rischmann1-0/+27
2021-01-06fix compile error in readFieldGravatar Vincent Rischmann1-1/+1
2021-01-06add a test that reads only pointersGravatar Vincent Rischmann1-0/+35
2021-01-06implement reading a value into a one-element pointerGravatar Vincent Rischmann1-1/+6
2021-01-06add readFieldGravatar Vincent Rischmann1-15/+20
2021-01-06reorder fields to workaround a compiler bugGravatar Vincent Rischmann1-17/+17
2021-01-05logging file open {} -> {s}Gravatar Sebastian1-1/+1
2021-01-03convert {} to {s} or {d}Gravatar Vincent Rischmann1-3/+3
2021-01-02add a test for binding a .One pointerGravatar Vincent Rischmann1-0/+22
2021-01-02stop special casing []const u8 and []u8, do it in the .Pointer switch armGravatar Vincent Rischmann1-3/+6
2021-01-02allow binding a pointerGravatar Vincent Rischmann1-0/+1
2021-01-02add a test that binds a string literalGravatar Vincent Rischmann1-0/+20
2021-01-02add bindFieldGravatar Vincent Rischmann1-24/+31
2021-01-02fix the comment on Stmt.one and Stmt.allGravatar Vincent Rischmann1-3/+1
2021-01-01fix compile errorGravatar Vincent Rischmann1-1/+1
2021-01-01check the weight field tooGravatar Vincent Rischmann1-0/+1
2020-12-31fix tests with the new errorsGravatar Vincent Rischmann1-2/+2