| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | build: add some comments to clarify what we're doing | 2022-01-04 | 1 | -0/+8 | ||
| * | update sqlite bundled source code to 3.37.1 | 2022-01-04 | 2 | -6400/+8470 | ||
| * | query: improve tests | 2022-01-02 | 1 | -23/+37 | ||
| * | query: rework the named bind marker parsing | 2022-01-02 | 1 | -15/+12 | ||
| * | query: use snake_case for the states for consistency | 2022-01-02 | 1 | -18/+18 | ||
| * | query: remove identifier from BindMarker | 2022-01-02 | 1 | -18/+17 | ||
| * | query: remove identifier_type from BindMarker | 2022-01-02 | 1 | -41/+0 | ||
| * | add a test for a crash found by fuzzing | 2021-12-31 | 1 | -1/+5 | ||
| * | fix savepoint InitError | 2021-12-31 | 1 | -0/+3 | ||
| * | fuzz: handle error.ExecReturnedData | 2021-12-31 | 1 | -0/+1 | ||
| * | statement: return an error if using exec() returns data | 2021-12-31 | 1 | -0/+1 | ||
| * | fuzz: add a previously interesting input | 2021-12-31 | 1 | -0/+0 | ||
| * | add a test using untyped bind markers | 2021-12-31 | 1 | -0/+19 | ||
| * | fix query parsing when there's a named identifier without a type | 2021-12-31 | 1 | -0/+1 | ||
| * | query: also test the number of bind markers | 2021-12-31 | 1 | -0/+10 | ||
| * | use StatementType | 2021-12-31 | 1 | -4/+2 | ||
| * | Merge branch 'add-apache-license' | 2021-12-31 | 2 | -0/+203 | ||
| |\ | ||||||
| | * | fuzz: add apache 2 license and copyright notice to sql.dict | 2021-12-28 | 2 | -0/+203 | ||
| |/ | ||||||
| * | fix a panic in Statement.prepare if the query is empty | 2021-12-26 | 1 | -0/+7 | ||
| * | add tests for crashes found by fuzzing | 2021-12-26 | 1 | -0/+19 | ||
| * | add some fuzzing capability | 2021-12-26 | 5 | -1/+379 | ||
| * | gitignore: ignore coredumps | 2021-12-26 | 1 | -0/+1 | ||
| * | improve query parsing to ignore bind markers prefix inside strings | 2021-12-18 | 1 | -0/+16 | ||
| * | add a test for bind markers inside strings | 2021-12-18 | 1 | -1/+31 | ||
| * | readme: add a note about sqlite compile-time options | 2021-12-18 | 1 | -0/+2 | ||
| * | fix readArray when reading zero-length blob | 2021-12-18 | 1 | -8/+17 | ||
| * | add a test binding an empty slice to a text column | 2021-12-18 | 1 | -0/+67 | ||
| * | always deinit the test database | 2021-12-18 | 1 | -0/+30 | ||
| * | rename argument for clarity | 2021-12-18 | 1 | -3/+3 | ||
| * | build: fix for latest zig | 2021-12-06 | 1 | -8/+0 | ||
| * | Merge branch 'fix-latest-zig' | 2021-12-06 | 1 | -52/+73 | ||
| |\ | ||||||
| | * | all: replace spanZ with sliceTo | 2021-12-01 | 1 | -8/+12 | ||
| | * | all: fix for latest Allocator interface refactor | 2021-12-01 | 1 | -44/+61 | ||
| |/ | ||||||
| * | dynamic statement: fix documentation | 2021-11-22 | 1 | -3/+5 | ||
| * | dynamic statement: document bind() | 2021-11-22 | 1 | -0/+33 | ||
| * | dynamic statement: add some tests | 2021-11-22 | 1 | -0/+98 | ||
| * | dynamic statement: fix one() | 2021-11-22 | 1 | -1/+1 | ||
| * | remove smartBind/bindNamedStruct, they're not actually necessary | 2021-11-22 | 1 | -33/+11 | ||
| * | Fixes | 2021-11-22 | 1 | -3/+36 | ||
| * | A handful of tiny fixes. | 2021-11-22 | 1 | -6/+6 | ||
| * | Merge branch 'fix-savepoint-deinit' | 2021-11-07 | 1 | -0/+5 | ||
| |\ | ||||||
| | * | savepoint: always deinit the statements | 2021-11-07 | 1 | -0/+5 | ||
| |/ | ||||||
| * | add options to enable wine/wasmtime/darling for tests | 2021-11-02 | 1 | -0/+6 | ||
| * | implement savepoint | 2021-10-23 | 1 | -0/+250 | ||
| * | use explicit error sets everywhere | 2021-10-23 | 1 | -11/+25 | ||
| * | ci: remove the debian amd64 build | 2021-10-23 | 1 | -25/+0 | ||
| * | query: use lowercase for enum fields | 2021-10-23 | 1 | -9/+12 | ||
| * | query: increase eval branch quota for tests | 2021-10-23 | 1 | -0/+1 | ||
| * | query: no need to use comptimePrint | 2021-10-23 | 1 | -3/+3 | ||
| * | query: use a switch instead of if/else chains | 2021-10-23 | 1 | -8/+11 | ||