summaryrefslogtreecommitdiff
path: root/sqlite.zig (unfollow)
Commit message (Expand)AuthorFilesLines
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
2020-12-31add proper error typesGravatar Vincent Rischmann1-8/+7
2020-12-30add pragmaAllocGravatar Vincent Rischmann1-21/+43
2020-12-30add more testsGravatar Vincent Rischmann1-28/+83
2020-12-30introduce *Alloc methodsGravatar Vincent Rischmann1-48/+109
2020-12-30document OpenFlagsGravatar Vincent Rischmann1-0/+1
2020-12-30add more tests for failuresGravatar Vincent Rischmann1-0/+21
2020-12-30remove loggingGravatar Vincent Rischmann1-3/+0
2020-12-30add Error, DetailedErrorGravatar Vincent Rischmann1-0/+33
2020-12-30document ThreadingMode and InitOptionsGravatar Vincent Rischmann1-1/+19
2020-12-30remove the allocator from Db and Db.initGravatar Vincent Rischmann1-21/+18
2020-12-29add initOptions for testingGravatar Vincent Rischmann1-14/+24
2020-12-29add InitOptionsGravatar Vincent Rischmann1-15/+29
2020-12-29add the threading modeGravatar Vincent Rischmann1-0/+14
2020-12-28rename is_ci to in_memoryGravatar Vincent Rischmann1-2/+2
2020-12-27fix some typosGravatar Vincent Rischmann1-2/+2
2020-12-27readBytes can simply take the allocator instead of the optionsGravatar Vincent Rischmann1-16/+16
2020-12-27don't pass the options to readInt, readFloat, readBoolGravatar Vincent Rischmann1-9/+9
2020-12-27require the callers to provide a 0-terminated stringGravatar Vincent Rischmann1-6/+2
2020-12-21add the Db.one() convenience functionGravatar Vincent Rischmann1-0/+27
2020-12-21implement reading of sentineled slicesGravatar Vincent Rischmann1-25/+50
2020-12-21add the readPointer methodGravatar Vincent Rischmann1-3/+24
2020-12-21add commentsGravatar Vincent Rischmann1-0/+3
2020-12-21add commentsGravatar Vincent Rischmann1-2/+42
2020-12-21make readBytes read Blob, Text as well as []const u8, []u8Gravatar Vincent Rischmann1-38/+42
2020-12-21make readArray return an array instead of taking a pointerGravatar Vincent Rischmann1-7/+7
2020-12-21add a weight real column to the test tableGravatar Vincent Rischmann1-14/+18
2020-12-21make readInt, readFloat, readBool return a specific type and columnGravatar Vincent Rischmann1-17/+14
2020-12-21reorder the arguments of readBytesGravatar Vincent Rischmann1-7/+7
2020-12-21make readBytes return a value instead of taking a pointerGravatar Vincent Rischmann1-19/+13
2020-12-21actually check the value of is_idGravatar Vincent Rischmann1-0/+1
2020-12-21allow reading a bool fieldGravatar Vincent Rischmann1-1/+6
2020-12-21allow bool bind parameters and reading bool valuesGravatar Vincent Rischmann1-0/+47
2020-12-21pass the column in readArrayGravatar Vincent Rischmann1-7/+12
2020-12-21add reading a field into an arrayGravatar Vincent Rischmann1-13/+52
2020-11-26replace span() with the field itemsGravatar Vincent Rischmann1-3/+3
2020-11-26return the slice from toOwnedSliceGravatar Vincent Rischmann1-1/+1
2020-11-13allow reading into a void value (essentially discarding the column)Gravatar Vincent Rischmann1-0/+16
2020-11-13fix the pragma test when using -Dis_ciGravatar Vincent Rischmann1-8/+19
2020-11-13add Db.pragmaGravatar Vincent Rischmann1-0/+51