summaryrefslogtreecommitdiff
path: root/sqlite.zig (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* add a weight real column to the test tableGravatar Vincent Rischmann2020-12-211-14/+18
|
* make readInt, readFloat, readBool return a specific type and columnGravatar Vincent Rischmann2020-12-211-17/+14
|
* reorder the arguments of readBytesGravatar Vincent Rischmann2020-12-211-7/+7
|
* make readBytes return a value instead of taking a pointerGravatar Vincent Rischmann2020-12-211-19/+13
|
* actually check the value of is_idGravatar Vincent Rischmann2020-12-211-0/+1
|
* allow reading a bool fieldGravatar Vincent Rischmann2020-12-211-1/+6
|
* allow bool bind parameters and reading bool valuesGravatar Vincent Rischmann2020-12-211-0/+47
|
* pass the column in readArrayGravatar Vincent Rischmann2020-12-211-7/+12
| | | | also test that we can read an array field
* add reading a field into an arrayGravatar Vincent Rischmann2020-12-211-13/+52
| | | | | | We require having a sentineled array because otherwise we have no way of communicating to the caller the actual length of the data we put into the array.
* replace span() with the field itemsGravatar Vincent Rischmann2020-11-261-3/+3
|
* return the slice from toOwnedSliceGravatar Vincent Rischmann2020-11-261-1/+1
|
* allow reading into a void value (essentially discarding the column)Gravatar Vincent Rischmann2020-11-131-0/+16
|
* fix the pragma test when using -Dis_ciGravatar Vincent Rischmann2020-11-131-8/+19
|
* add Db.pragmaGravatar Vincent Rischmann2020-11-131-0/+51
|
* allow reading a single string in one() and all()Gravatar Vincent Rischmann2020-11-131-154/+234
| | | | Also refactor the tests.
* add documentation for the iteratorGravatar Vincent Rischmann2020-11-121-0/+41
|
* add an iteratorGravatar Vincent Rischmann2020-11-121-148/+211
| | | | | An iterator can be used to process rows one by one, without loading everything into an array list first.
* allow reading a single float valueGravatar Vincent Rischmann2020-11-121-7/+37
|
* add Statement.reset and test itGravatar Vincent Rischmann2020-11-121-27/+88
|
* allow untyped bind markersGravatar Vincent Rischmann2020-11-111-2/+6
|
* refactor readBytesGravatar Vincent Rischmann2020-11-111-17/+11
|
* add readBytes and allow reading into a Text or Blob structGravatar Vincent Rischmann2020-11-111-14/+80
|
* add types to bind markers and check them at comptimeGravatar Vincent Rischmann2020-11-111-45/+31
|
* fix compileError messageGravatar Vincent Rischmann2020-10-301-1/+1
|
* remove unused codeGravatar Vincent Rischmann2020-10-301-5/+0
|
* update documentationGravatar Vincent Rischmann2020-10-291-2/+12
|
* update documentationGravatar Vincent Rischmann2020-10-291-12/+18
|
* use an anonymous struct now that the compiler is fixedGravatar Vincent Rischmann2020-10-291-9/+2
|
* refactor APIGravatar Vincent Rischmann2020-10-251-228/+246
| | | | | It doesn't make sense to pass the bind parameters in prepare; instead pass them in `exec`, `one`, and `all`.
* document the Bytes typeGravatar Vincent Rischmann2020-10-251-0/+6
|
* fix test so that the compiler doesn't crashGravatar Vincent Rischmann2020-10-251-5/+12
|
* add the Bytes typeGravatar Vincent Rischmann2020-10-251-3/+28
|
* check the type of the options argumentGravatar Vincent Rischmann2020-10-251-0/+6
|
* sqlite: fix default modeGravatar Vincent Rischmann2020-10-241-1/+7
|
* remove the src directoryGravatar Vincent Rischmann2020-10-241-0/+513