summaryrefslogtreecommitdiff
path: root/sqlite.zig (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-11-13allow reading a single string in one() and all()Gravatar Vincent Rischmann1-154/+234
Also refactor the tests.
2020-11-12add documentation for the iteratorGravatar Vincent Rischmann1-0/+41
2020-11-12add an iteratorGravatar Vincent Rischmann1-148/+211
An iterator can be used to process rows one by one, without loading everything into an array list first.
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
It doesn't make sense to pass the bind parameters in prepare; instead pass them in `exec`, `one`, and `all`.
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