Golang SQLCipher driver conforming to the built-in database/sql interface and using the latest sqlite3 code.
Go to file
Ian Lance Taylor b76c61051f bind: pass &v[0] in direct call to C
In Go 1.6, the cgo checking rules are more precise when they see an
address operation as an argument to the C function.  When you pass &v[0]
to a C function, the cgo check just verifies that v itself does not
contain any pointers.  When you write `p := &v[0]` and then pass p to
the C function, the cgo check is conservative: it verifies that the
entire memory block to which p points does not contain any pointers.
When the bind function is called by code that passes a slice that is
part of a larger struct, this means that the cgo check will look at the
entire larger struct, not just the slice.  This can cause a surprising
run time failure.

Avoid this problem by rewriting the code slightly to pass &v[0] in the
call to the C function itself.

In particular this fixes the tests of github.com/jmoiron/sqlx when using
Go 1.6.
2016-01-29 12:39:47 -08:00
_example remove binary file 2015-09-16 10:47:42 +09:00
code Upgrade sqlite amalgamation to latest 3.10.2 2016-01-22 13:15:37 +03: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 go cover has moved 2014-11-14 00:23:32 +01:00
LICENSE Add LICENSE file 2014-08-18 16:52:12 +09:00
README.md Update README.md 2016-01-28 20:28:43 -05:00
backup.go Rename sqlite3.{c,h} to sqlite3-binding.{c,h} 2015-03-11 16:19:50 -04:00
callback.go fix #238 2015-09-16 15:58:07 +09: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 Implement support for passing Go functions as custom functions to SQLite. 2015-08-21 13:39:50 -07: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 hack to use libsqlite3 2015-06-12 13:26:42 +09:00
sqlite3-binding.h hack to use libsqlite3 2015-06-12 13:26:42 +09:00
sqlite3.go bind: pass &v[0] in direct call to C 2016-01-29 12:39:47 -08:00
sqlite3_fts3_test.go Clean up tempfiles in tests 2015-11-03 13:52:28 +01:00
sqlite3_icu.go added icu extension support 2015-08-20 03:02:59 +03:00
sqlite3_libsqlite3.go hack to use libsqlite3 2015-06-12 13:26:42 +09:00
sqlite3_load_extension.go introduce ability to pass sqlite_omit_load_extension 2015-09-04 14:46:16 -07: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 Clean up tempfiles in tests 2015-11-03 13:52:28 +01:00
sqlite3_windows.go Fix compile for old mingw32 2015-12-30 00:19:24 +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 amalgamation code that copied from SQLite3. The license of those codes are depend on the license of SQLite3.

Author

Yasuhiro Matsumoto (a.k.a mattn)