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

hi, there may be 2 bugs about sqlite3. 1. when i execute a sql by go api to create a index on not exist column , it will lead me...

Hello everyone, I tried to build a module using your go-sqlite3 package and run the resulting binary inside a SCRATCH image. The build is done inside a github ubuntu runner,...

Is there a way to utilize configurations like in https://www.sqlite.org/c3ref/c_config_covering_index_scan.html ? I want to know if I can run SQLite on going while setting `SQLITE_MEMDB_DEFAULT_MAXSIZE`. Alternatively I would like to...

https://github.com/mattn/go-sqlite3/blob/master/sqlite3_opt_vtable.go#L467 I'm willing to submit a PR, but wanted to first see if this was viewed as a misinterpretation of the documentation. I got the impression that setting .omit is...

I use DATETIME type, with sub second precision in my schema. A scan against this table sometimes errors with this error: `Scan error on column index 0, name "created_at": converting...

given main.go ``` go package main import ( "log" _ "github.com/mattn/go-sqlite3" ) func main() { log.Println("hello world") } ``` running `go run -v cmd/main/main.go` produces: ``` terminal github.com/mattn/go-sqlite3 ^CāŽ ```...

This implements the registration of user-defined window functions. It extends the existing `RegisterAggregator` interface to allow the `impl` to implement `Inverse` and `Value`, in which case, the aggregator can be...

### Issue description I expect it to compile but it doesn't on Windows ARM. ### Example code ```go package main import ( _ "github.com/mattn/go-sqlite3" ) func main() { // ......

This PR adds support for [SQLCipher](https://github.com/sqlcipher/sqlcipher) whilst keeping the existing embedded sqlite3 implementation. The support is enabled via the `sqlcipher` and `libsqlcipher` build tags, which respectively use the embedded SQLCipher...