go-sqlite-lite icon indicating copy to clipboard operation
go-sqlite-lite copied to clipboard

SQLite driver for the Go programming language

Results 8 go-sqlite-lite issues
Sort by recently updated
recently updated
newest added

Are there any plans to update your library to the current SQLite version (3.31.1 as of January 2020)?

https://github.com/crawshaw/sqlite/issues/110 Had to abandon a SQLite based approach due to this issue. Does this driver suffer the same issue?

How can I acquire a `Backup` instance? The method `newBackup(…)` in `backup.go` is not exported. How can we use the online backup? Cheers -- Matthias

``` # go get -v github.com/bvinc/go-sqlite-lite/sqlite3 github.com/bvinc/go-sqlite-lite/sqlite3 # github.com/bvinc/go-sqlite-lite/sqlite3ld: error: undefined symbol: log >>> referenced by sqlite3.c:204010 >>> $WORK/b001/_x008.o:(fts5Bm25Function) clang: error: linker command failed with exit code 1 (use -v...

I noticed during the import, that go.mod is missing in your main branch. > require ( > github.com/bvinc/go-sqlite-lite/sqlite v0.6.1 > github.com/jmoiron/sqlx v1.2.0 >) >go: finding github.com/bvinc/go-sqlite-lite/sqlite3 v0.6.1 > go: github.com/bvinc/go-sqlite-lite/[email protected]:...

When I try to cross compile my project which uses `go-sqlite-lite`, I get the following output: ``` ➜ GOOS=linux GOARCH=amd64 go build -o bin/application ./cmd/rgserver extern/sqlite/sqllite_reader.go:8:2: build constraints exclude all...

Is it possible to have this: https://www.sqlite.org/vtab.html ? In section 1.2 - Implementation it refers to the needed methods to create custom modules to create virtual tables.