Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New SQLite version #26

Open
mwat56 opened this issue Apr 13, 2020 · 2 comments
Open

New SQLite version #26

mwat56 opened this issue Apr 13, 2020 · 2 comments

Comments

@mwat56
Copy link

mwat56 commented Apr 13, 2020

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

@paparipote
Copy link

paparipote commented May 30, 2020

Hello, as a way to "modernize" this nice library, what I was doing is to replace the old versions of sqlite3.c and sqlite3.h by the new ones, into my machine: github.com\bvinc\go-sqlite-lite\sqlite3 and then rebuild/install it with good results.
I work under windows and I use go-sqlite-lite because, by now, it is faster than other similar products.
Regards.

@joenano
Copy link

joenano commented Dec 9, 2021

The above method works well, there is a list of urls for different sqlite version downloads here.

The sqlite3.c and sqlite3.h files are in the amalgamation zips.

Clone this repo, replace the files in the sqlite folder then run

go mod init github.com/bvinc/go-sqlite-lite/local

then in your projects go.mod file add this to use the local version.

replace github.com/bvinc/go-sqlite-lite v0.6.1 => /path/to/local

require (
	github.com/bvinc/go-sqlite-lite v0.6.1
)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants