go-sqlite3 icon indicating copy to clipboard operation
go-sqlite3 copied to clipboard

sqlite3 driver for go using database/sql

Results 242 go-sqlite3 issues
Sort by recently updated
recently updated
newest added

Would it be possible to implement the blob i/o API just as the backup API ? [mxk/go-sqlite](https://github.com/mxk/go-sqlite/tree/master/sqlite3) has it but is a little out of date. [gwenn/gosqlite](https://github.com/gwenn/gosqlite) has it too.

enhancement

Update Go source files to use the '//go:build' lines introduced by Go 1.17 and the doc comment formatting introduced by Go 1.19. This formatting is not changed by Go 1.20....

Move the convertAssign logic from convert.go to sqlite3_opt_preupdate_hook.go since that is the only place it is used.

This option enable support to DBSTAT Virtual Table

This commit changes bind() to use time.Time.AppendFormat, which returns a byte slice, instead of time.Time.Format, which returns a string that must then be converted to a byte slice. This should...

#### Background [Spatialite](https://www.gaia-gis.it/fossil/libspatialite/index) can be initialized in two ways. Most commonly `mod_spatialite` is loaded via sqlite APIs, which eventually use `dlopen` to dynamically load the shared library. This doesn't allow...

Is it possible to add the Spellfix1 virtual table? I tried adding "spellfix1" to the build tags but it does not work.

When I create a temp table, it throws an error that the table doesn't exist. When running the commands in datagrip and the sqlite cli with parameters replaced, it does...

I hear that busy_timeout only work when it's over 1s , but I don't want db operation cost too long time(May cause my app runing slowly). can I register sqlite3_busy_handler...