sqlite3 driver for go using database/sql
Go to file
sqweek 727ad200a2 Fix inconsistent tx state with database/sql.
The semantics of sql.Tx.Commit impose that the transaction is
finished and cleaned up by the time the driver's Commit function
returns. However sqlite3 leaves the transaction open if COMMIT
fails due to an SQLITE_BUSY error, so *we* must clean it up.

Closes #184.
2016-04-18 21:47:24 +08:00
_example add missing error checking to simple example 2016-04-14 20:56:02 +02:00
sqlite3_test Merge branch 'pr/207' 2015-11-02 11:53:42 +09:00
.gitignore add .gitignore 2014-11-14 17:20:14 +09:00
.travis.yml Remove gocov 2016-03-15 13:09:03 +09:00
LICENSE Add LICENSE file 2014-08-18 16:52:12 +09:00
README.md Fix minor typos in comments 2016-02-23 01:26:13 -05:00
backup.go Move sqlite3 amalgation files a directory up. 2016-04-02 12:48:26 +02:00
callback.go callback: use handles rather than passing Go pointers 2016-01-29 13:18:39 -08:00
callback_test.go Move argument converters to callback.go, and optimize return value handling. 2015-08-21 16:37:45 -07:00
doc.go Fix sqlite "regexp" function name in documentation 2016-03-24 15:58:39 +00:00
error.go Add one blank line for godoc 2014-08-18 17:00:59 +09:00
error_test.go Add test for ErrNo.Extend() 2015-01-26 18:38:13 +09:00
sqlite3-binding.c Move sqlite3 amalgation files a directory up. 2016-04-02 12:48:26 +02:00
sqlite3-binding.h Move sqlite3 amalgation files a directory up. 2016-04-02 12:48:26 +02:00
sqlite3.go Fix inconsistent tx state with database/sql. 2016-04-18 21:47:24 +08:00
sqlite3_fts3_test.go Clean up tempfiles in tests 2015-11-03 13:52:28 +01:00
sqlite3_fts5.go Conditional build for the FTS5 Extension 2016-03-07 16:20:02 +09:00
sqlite3_icu.go added icu extension support 2015-08-20 03:02:59 +03:00
sqlite3_json1.go Conditional build for the JSON1 Extension 2016-02-28 09:53:54 +01:00
sqlite3_libsqlite3.go hack to use libsqlite3 2015-06-12 13:26:42 +09:00
sqlite3_load_extension.go Expose LoadExtension with entry point 2016-04-18 17:05:50 +08:00
sqlite3_omit_load_extension.go introduce ability to pass sqlite_omit_load_extension 2015-09-04 14:46:16 -07:00
sqlite3_other.go remove -lpthread. related issue #201 2015-04-28 08:58:25 +09:00
sqlite3_test.go Fix testing message at TestInsert and TestUpdate 2016-03-14 20:54:10 +09:00
sqlite3_windows.go Fix compile for old mingw32 2015-12-30 00:19:24 +02:00
sqlite3ext.h Move sqlite3 amalgation files a directory up. 2016-04-02 12:48:26 +02:00

README.md

go-sqlite3

Build Status Coverage Status GoDoc

Description

sqlite3 driver conforming to the built-in database/sql interface

Installation

This package can be installed with the go get command:

go get github.com/mattn/go-sqlite3

go-sqlite3 is cgo package. If you want to build your app using go-sqlite3, you need gcc. However, if you install go-sqlite3 with go install github.com/mattn/go-sqlite3, you don't need gcc to build your app anymore.

Documentation

API documentation can be found here: http://godoc.org/github.com/mattn/go-sqlite3

Examples can be found under the ./_example directory

FAQ

License

MIT: http://mattn.mit-license.org/2012

sqlite3-binding.c, sqlite3-binding.h, sqlite3ext.h

The -binding suffix was added to avoid build failures under gccgo.

In this repository, those files are an amalgamation of code that was copied from SQLite3. The license of that code is the same as the license of SQLite3.

Author

Yasuhiro Matsumoto (a.k.a mattn)