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

sqlite3 driver for go using database/sql

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

Hello, this is a continuation of #1037, which fixes #990. ## Changes - Adds test to check if sqlite math functions are compiled in - Update github workflow to include...

I noticed that returning an error from various methods in VTabCursor (Filter, Next, etc.) does not result in an error being propagated when executing a query. Returning an error from...

Fix for #1068 **Changes** * Introduce `arm64` and `amd64` build tags * Appropriate changes in documentation

Hi Devs, First I'd like to thank you for make this amazing tool, it made my life much easier when interacting with SQLite3 in Go. I'm doing some experiement on...

This fixes an issue where deferred constraints can leave the transaction in an inconsistent state. In the event of a failed deferred constraint, we need to issue a rollback in...

Every time my application starts or tests are run I get the following in my output: ``` # github.com/mattn/go-sqlite3 sqlite3-binding.c: In function ‘sqlite3SelectNew’: sqlite3-binding.c:128049:10: warning: function may return address of...

When path is prefixed with `\\?\` on Windows which is valid when we want to go beyond 260 character path limit, `sql.Open("sqlite3", "\\\\?\\......")` fails with this error: ``` unable to...

select * from a s left join b m on s.msgid=m.msgid a table data 53 b table data 100000 a and b msgid type TEXT android os exec sql return...

I'm relatively new to Golang and not sure if I get the whole picture. This is the reason I decided to create an issue but not MR yet. I'm trying...

```sh > go version go version go1.18.1 darwin/arm64 > GOOS=linux GOARCH=amd64 CGO_ENABLED=1 go build -trimpath # runtime/cgo linux_syscall.c:67:13: error: implicit declaration of function 'setresgid' is invalid in C99 [-Werror,-Wimplicit-function-declaration] linux_syscall.c:67:13:...