sqlite icon indicating copy to clipboard operation
sqlite copied to clipboard

work in progress

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

This is intended as a replacement for our internal sqlitedb package pool and its TxWrapper. It needs a little more machinery to be dropped in that's not covered in this...

The set of column names in a program is relatively bounded; cache them in memory forever to save on some per-query allocs. Benchmark (of 5 row result set) doesn't show...

I am working on something involving this database driver that makes use of the sql.Null\* types. When making queries that have a mix of NULL and non-NULL values in a...

According to the docs strings returned by `sqlite3_expanded_sql` should be freed manually with `sqlite3_free`: https://www.sqlite.org/c3ref/expanded_sql.html > The string returned by sqlite3_expanded_sql(P), on the other hand, is obtained from sqlite3_malloc() and...

I understand this library aims to be db/sql driver which is explicitly a non-goal for `crawshaw.io/sqlite`, although apparently there was a discussion about it: https://github.com/crawshaw/sqlite/issues/30. Is this package going to...

Signed-off-by: David Crawshaw

Porting from modernc.org/sqlite to this package, one of my queries fail preparation, where it executed without issue on modernc: ``` sqlite.Prepare: SQLITE_ERROR: no such table: temp.seen (DELETE FROM dirty WHERE...

The interaction between cleanup and reuse of the connection makes this feature hard to use as-written. While #87 proposes a couple ways to fix the issue, let's revert the partial...