summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* add the threading modeGravatar Vincent Rischmann2020-12-291-0/+14
|
* readme: replace sourcehut repository url with githubGravatar Vincent Rischmann2020-12-291-1/+1
|
* Merge branch 'rename-build-option'Gravatar Vincent Rischmann2020-12-287-10/+32
|\
| * ci: rename is_ci to in_memoryGravatar Vincent Rischmann2020-12-285-6/+28
| | | | | | | | also test both modes
| * rename is_ci to in_memoryGravatar Vincent Rischmann2020-12-282-4/+4
|/
* update readme with the library statusGravatar Vincent Rischmann2020-12-271-0/+6
|
* fix some typosGravatar Vincent Rischmann2020-12-271-2/+2
|
* readBytes can simply take the allocator instead of the optionsGravatar Vincent Rischmann2020-12-271-16/+16
|
* don't pass the options to readInt, readFloat, readBoolGravatar Vincent Rischmann2020-12-271-9/+9
|
* require the callers to provide a 0-terminated stringGravatar Vincent Rischmann2020-12-271-6/+2
|
* ci: add the build manifest for debian/buster aarch64Gravatar Vincent Rischmann2020-12-231-0/+27
|
* only Linux is supportedGravatar Vincent Rischmann2020-12-221-1/+1
|
* add the github workflowGravatar Vincent Rischmann2020-12-221-0/+30
|
* Merge branch 'document-iterator'Gravatar Vincent Rischmann2020-12-211-1/+55
|\
| * document the iteratorGravatar Vincent Rischmann2020-12-211-1/+55
|/
* Merge branch 'improve-readme'Gravatar Vincent Rischmann2020-12-211-0/+29
|\
| * readme: document the one methodsGravatar Vincent Rischmann2020-12-211-0/+29
|/
* Merge branch 'db-one'Gravatar Vincent Rischmann2020-12-211-0/+27
|\
| * add the Db.one() convenience functionGravatar Vincent Rischmann2020-12-211-0/+27
|/
* readme: Bytes doesn't exist, it's either Blob or TextGravatar Vincent Rischmann2020-12-211-1/+2
|
* readme: fix spellingGravatar Vincent Rischmann2020-12-211-1/+1
|
* Merge branch 'read-pointer'Gravatar Vincent Rischmann2020-12-211-27/+73
|\
| * implement reading of sentineled slicesGravatar Vincent Rischmann2020-12-211-25/+50
| |
| * add the readPointer methodGravatar Vincent Rischmann2020-12-211-3/+24
|/
* Merge branch 'refactor'Gravatar Vincent Rischmann2020-12-211-82/+124
|\
| * add commentsGravatar Vincent Rischmann2020-12-211-0/+3
| |
| * add commentsGravatar Vincent Rischmann2020-12-211-2/+42
| |
| * make readBytes read Blob, Text as well as []const u8, []u8Gravatar Vincent Rischmann2020-12-211-38/+42
| |
| * make readArray return an array instead of taking a pointerGravatar Vincent Rischmann2020-12-211-7/+7
| |
| * 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
|
* improve readmeGravatar Vincent Rischmann2020-12-211-46/+170
| | | | Document the checks done at comptime
* allow reading a bool fieldGravatar Vincent Rischmann2020-12-211-1/+6
|
* allow bool bind parameters and reading bool valuesGravatar Vincent Rischmann2020-12-212-0/+50
|
* readme: add a note about using arrays of u8Gravatar Vincent Rischmann2020-12-211-0/+2
|
* 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.
* ci: add the build manifest for alpine/edge amd64Gravatar Vincent Rischmann2020-12-181-0/+27
|
* replace span() with the field itemsGravatar Vincent Rischmann2020-11-261-3/+3
|
* return the slice from toOwnedSliceGravatar Vincent Rischmann2020-11-261-1/+1
|
* is_signed was replaced with .signednessGravatar Vincent Rischmann2020-11-261-1/+1
|
* Merge branch 'read-into-void' into masterGravatar Vincent Rischmann2020-11-131-0/+16
|\
| * allow reading into a void value (essentially discarding the column)Gravatar Vincent Rischmann2020-11-131-0/+16
|/
* Merge branch 'pragma' into masterGravatar Vincent Rischmann2020-11-131-0/+62
|\
| * 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.