sqlite icon indicating copy to clipboard operation
sqlite copied to clipboard

Go SQLite3 driver

Results 35 sqlite issues
Sort by recently updated
recently updated
newest added

Corrupt databases error when rolling back, which causes a panic here: https://github.com/crawshaw/sqlite/blob/d1964889ea3ccf38f82e20ce4d5b03d926f90ed1/sqlitex/savepoint.go#L131.

Fix for https://github.com/crawshaw/sqlite/issues/139

Prepare shouldn't call Reset and ClearBindings unconditionally. The underlying C functions sqlite3_reset and sqlite3_clear_bindings functions are non-trivial and will cause some slow down. Neither of them is necessary if the...

The current source fails to build with clang on windows due to forward declarations. It appears that cgo code within a go file shouldn't contain a forward declaration to a...

https://github.com/crawshaw/sqlite/blob/6c1d4ad4ed9d0acc0ca4b99dd67c5c14d488633c/blob.go#L81-L85 This code defines a struct with fields named `ReadWriteSeeker`, `ReaderAt`, `WriterAt`, and `Closer` which are never used. Notably, `Blob` itself implements the functions required by these interfaces. If `Blob`...