summaryrefslogtreecommitdiff
path: root/sqlite.zig (unfollow)
Commit message (Expand)AuthorFilesLines
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
2020-11-13allow reading a single string in one() and all()Gravatar Vincent Rischmann1-154/+234
2020-11-12add documentation for the iteratorGravatar Vincent Rischmann1-0/+41
2020-11-12add an iteratorGravatar Vincent Rischmann1-148/+211
2020-11-12allow reading a single float valueGravatar Vincent Rischmann1-7/+37
2020-11-12add Statement.reset and test itGravatar Vincent Rischmann1-27/+88
2020-11-11allow untyped bind markersGravatar Vincent Rischmann1-2/+6
2020-11-11refactor readBytesGravatar Vincent Rischmann1-17/+11
2020-11-11add readBytes and allow reading into a Text or Blob structGravatar Vincent Rischmann1-14/+80
2020-11-11add types to bind markers and check them at comptimeGravatar Vincent Rischmann1-45/+31
2020-10-30fix compileError messageGravatar Vincent Rischmann1-1/+1
2020-10-30remove unused codeGravatar Vincent Rischmann1-5/+0
2020-10-29update documentationGravatar Vincent Rischmann1-2/+12
2020-10-29update documentationGravatar Vincent Rischmann1-12/+18
2020-10-29use an anonymous struct now that the compiler is fixedGravatar Vincent Rischmann1-9/+2
2020-10-25refactor APIGravatar Vincent Rischmann1-228/+246
2020-10-25document the Bytes typeGravatar Vincent Rischmann1-0/+6
2020-10-25fix test so that the compiler doesn't crashGravatar Vincent Rischmann1-5/+12
2020-10-25add the Bytes typeGravatar Vincent Rischmann1-3/+28
2020-10-25check the type of the options argumentGravatar Vincent Rischmann1-0/+6
2020-10-24sqlite: fix default modeGravatar Vincent Rischmann1-1/+7
2020-10-24remove the src directoryGravatar Vincent Rischmann1-0/+0
2020-10-24fix doc for StatementGravatar Vincent Rischmann1-5/+7
2020-10-24don't expose this functionGravatar Vincent Rischmann1-1/+1
2020-10-24take an options var in init()Gravatar Vincent Rischmann1-4/+6
2020-10-24fix typoGravatar Vincent Rischmann1-1/+1