Golang SQLCipher driver conforming to the built-in database/sql interface and using the latest sqlite3 code.
Go to file
John Gallagher 3abc337b8e Handle time.Time values with "timestamp" columns. 2012-04-07 00:29:24 -04:00
example add example of Prepare()/QueryRow(). add db.Close(). close #7 2012-02-23 14:30:50 +09:00
.travis.yml add travis recepi. 2012-03-30 00:39:03 +09:00
Makefile first import. 2011-11-11 21:36:22 +09:00
README.mkd update. 2012-03-29 12:48:11 +09:00
sqlite3.go Handle time.Time values with "timestamp" columns. 2012-04-07 00:29:24 -04:00
sqlite3_test.go Handle time.Time values with "timestamp" columns. 2012-04-07 00:29:24 -04:00

README.mkd

go-sqlite3

DESCRIPTION

sqlite3 driver for go that using database/sql

INSTALLATION

It require pkg-config. And need to be possible to get information with pkg-config --cflags --libs sqlite3. If you are using Windows, you can get pkg-config from below.

http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/

Go does not support static linkage for external C library. So you should build sqlite3 with shared library. If it run on windows, it need dll.

LICENSE

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