| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | fix the comment on Stmt.one and Stmt.all | 2021-01-02 | 1 | -3/+1 | ||
| | | ||||||
| * | fix compile error | 2021-01-01 | 1 | -1/+1 | ||
| | | ||||||
| * | check the weight field too | 2021-01-01 | 1 | -0/+1 | ||
| | | ||||||
| * | Merge branch 'statement-reuse' | 2021-01-01 | 1 | -0/+21 | ||
| |\ | ||||||
| | * | readme: document statement reuse | 2021-01-01 | 1 | -0/+21 | ||
| |/ | | | | Fixes #3 | |||||
| * | build: set the target | 2020-12-31 | 1 | -0/+3 | ||
| | | ||||||
| * | Merge pull request #11 from vrischmann/map-errors | 2020-12-31 | 2 | -10/+277 | ||
| |\ | | | | | Map errors | |||||
| | * | fix error checks based on the sqlite version | 2020-12-31 | 1 | -10/+38 | ||
| | | | ||||||
| | * | fix tests with the new errors | 2020-12-31 | 1 | -2/+2 | ||
| | | | ||||||
| | * | add proper error types | 2020-12-31 | 2 | -8/+247 | ||
| |/ | | | | | | | * Add SQLiteError and various SQLiteExtendedXYZError * Replace old errors with the SQLite ones where appropriate Fixes #8 | |||||
| * | Merge pull request #9 from vrischmann/split-alloc | 2020-12-31 | 2 | -168/+331 | ||
| |\ | | | | | Split allocating from non-allocating methods | |||||
| | * | fix readme | 2020-12-31 | 1 | -2/+2 | ||
| | | | | | | | | | | | * we can't actually bind arrays. * arrays require a sentinel | |||||
| | * | readme: document both allocating and non-allocating methods | 2020-12-31 | 1 | -76/+101 | ||
| | | | ||||||
| | * | add pragmaAlloc | 2020-12-30 | 1 | -21/+43 | ||
| | | | ||||||
| | * | add more tests | 2020-12-30 | 1 | -28/+83 | ||
| | | | ||||||
| | * | introduce *Alloc methods | 2020-12-30 | 1 | -48/+109 | ||
| |/ | | | | | | | | | | Stmt.oneAlloc, Db.oneAlloc and Iterator.nextAlloc do the same thing as Stmt.one, Db.one, Iterator.next respectively but they can allocate memory. This is useful when reading TEXT or BLOB columns because if you can't allocate memory the only way to read these types is with an array which means you must have an idea of the maximum size of the column. | |||||
| * | document OpenFlags | 2020-12-30 | 1 | -0/+1 | ||
| | | ||||||
| * | add more tests for failures | 2020-12-30 | 1 | -0/+21 | ||
| | | | | | | * one for Db.init * one for Db.prepare | |||||
| * | ci: use the github repo | 2020-12-30 | 4 | -4/+4 | ||
| | | ||||||
| * | remove logging | 2020-12-30 | 1 | -3/+0 | ||
| | | ||||||
| * | add Error, DetailedError | 2020-12-30 | 1 | -0/+33 | ||
| | | ||||||
| * | update readme for Db.init | 2020-12-30 | 1 | -3/+10 | ||
| | | ||||||
| * | document ThreadingMode and InitOptions | 2020-12-30 | 1 | -1/+19 | ||
| | | ||||||
| * | remove the allocator from Db and Db.init | 2020-12-30 | 1 | -21/+18 | ||
| | | ||||||
| * | ci: stop sending an email on failure | 2020-12-29 | 4 | -20/+0 | ||
| | | ||||||
| * | add initOptions for testing | 2020-12-29 | 1 | -14/+24 | ||
| | | ||||||
| * | add InitOptions | 2020-12-29 | 1 | -15/+29 | ||
| | | ||||||
| * | add the threading mode | 2020-12-29 | 1 | -0/+14 | ||
| | | ||||||
| * | readme: replace sourcehut repository url with github | 2020-12-29 | 1 | -1/+1 | ||
| | | ||||||
| * | Merge branch 'rename-build-option' | 2020-12-28 | 7 | -10/+32 | ||
| |\ | ||||||
| | * | ci: rename is_ci to in_memory | 2020-12-28 | 5 | -6/+28 | ||
| | | | | | | | | | also test both modes | |||||
| | * | rename is_ci to in_memory | 2020-12-28 | 2 | -4/+4 | ||
| |/ | ||||||
| * | update readme with the library status | 2020-12-27 | 1 | -0/+6 | ||
| | | ||||||
| * | fix some typos | 2020-12-27 | 1 | -2/+2 | ||
| | | ||||||
| * | readBytes can simply take the allocator instead of the options | 2020-12-27 | 1 | -16/+16 | ||
| | | ||||||
| * | don't pass the options to readInt, readFloat, readBool | 2020-12-27 | 1 | -9/+9 | ||
| | | ||||||
| * | require the callers to provide a 0-terminated string | 2020-12-27 | 1 | -6/+2 | ||
| | | ||||||
| * | ci: add the build manifest for debian/buster aarch64 | 2020-12-23 | 1 | -0/+27 | ||
| | | ||||||
| * | only Linux is supported | 2020-12-22 | 1 | -1/+1 | ||
| | | ||||||
| * | add the github workflow | 2020-12-22 | 1 | -0/+30 | ||
| | | ||||||
| * | Merge branch 'document-iterator' | 2020-12-21 | 1 | -1/+55 | ||
| |\ | ||||||
| | * | document the iterator | 2020-12-21 | 1 | -1/+55 | ||
| |/ | ||||||
| * | Merge branch 'improve-readme' | 2020-12-21 | 1 | -0/+29 | ||
| |\ | ||||||
| | * | readme: document the one methods | 2020-12-21 | 1 | -0/+29 | ||
| |/ | ||||||
| * | Merge branch 'db-one' | 2020-12-21 | 1 | -0/+27 | ||
| |\ | ||||||
| | * | add the Db.one() convenience function | 2020-12-21 | 1 | -0/+27 | ||
| |/ | ||||||
| * | readme: Bytes doesn't exist, it's either Blob or Text | 2020-12-21 | 1 | -1/+2 | ||
| | | ||||||
| * | readme: fix spelling | 2020-12-21 | 1 | -1/+1 | ||
| | | ||||||
| * | Merge branch 'read-pointer' | 2020-12-21 | 1 | -27/+73 | ||
| |\ | ||||||
| | * | implement reading of sentineled slices | 2020-12-21 | 1 | -25/+50 | ||
| | | | ||||||