Skip to content

crawshaw/sqlite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d196488 · Jun 18, 2022
Jun 18, 2022
Nov 10, 2021
Feb 15, 2020
Feb 16, 2020
Mar 29, 2018
May 26, 2020
Jun 18, 2022
Jun 30, 2018
May 25, 2020
May 25, 2020
Dec 10, 2019
Sep 7, 2019
Jan 21, 2020
Nov 6, 2018
Mar 29, 2018
Mar 29, 2018
May 26, 2020
May 24, 2020
Sep 25, 2019
Nov 6, 2021
Dec 10, 2019
Sep 18, 2018
May 26, 2020
Mar 31, 2018
May 20, 2019
May 20, 2019
Feb 14, 2020
Feb 14, 2020
Jun 18, 2022
Jun 22, 2020
May 26, 2020
Sep 25, 2019
Nov 6, 2021
Dec 31, 2019
Jun 18, 2022
Jun 18, 2022
Jun 18, 2022
Nov 6, 2021
Jun 18, 2022
May 26, 2020
May 26, 2020

Repository files navigation

Go interface to SQLite.

GoDoc Build Status (linux and macOS) Build status (windows)

This package provides a low-level Go interface to SQLite 3. Connections are pooled and if the SQLite shared cache mode is enabled the package takes advantage of the unlock-notify API to minimize the amount of handling user code needs for dealing with database lock contention.

It has interfaces for some of SQLite's more interesting extensions, such as incremental BLOB I/O and the session extension.

A utility package, sqlitex, provides some higher-level tools for making it easier to perform common tasks with SQLite. In particular it provides support to make nested transactions easy to use via sqlitex.Save.

This is not a database/sql driver.

go get -u crawshaw.io/sqlite

Example

A HTTP handler that uses a multi-threaded pool of SQLite connections via a shared cache.

var dbpool *sqlitex.Pool

func main() {
	var err error
	dbpool, err = sqlitex.Open("file:memory:?mode=memory", 0, 10)
	if err != nil {
		log.Fatal(err)
	}
	http.HandleFunc("/", handler)
	log.Fatal(http.ListenAndServe(":8080", nil))
}

func handler(w http.ResponseWriter, r *http.Request) {
	conn := dbpool.Get(r.Context())
	if conn == nil {
		return
	}
	defer dbpool.Put(conn)
	stmt := conn.Prep("SELECT foo FROM footable WHERE id = $id;")
	stmt.SetText("$id", "_user_id_")
	for {
		if hasRow, err := stmt.Step(); err != nil {
			// ... handle error
		} else if !hasRow {
			break
		}
		foo := stmt.GetText("foo")
		// ... use foo
	}
}

https://godoc.org/crawshaw.io/sqlite

Platform specific considerations

By default it requires some pthreads DLL on Windows. To avoid it, supply CGOLDFLAGS="-static" when building your application.