sqlite3 driver for go using database/sql
Go to file
lye a620c1a086 For boolean values, marshal true to SQLite 1, not -1
SQLite stores boolean values as an integer, serializing true as 1 and
false as 0 [1], but it does not actually enforce this range. To match
the documentation (and fix the broken test case), this patch makes a Go
boolean true serialize properly to 1.

[1] http://www.sqlite.org/datatype3.html
2012-03-02 00:47:26 +08:00
example Updating example 2012-03-02 00:47:25 +08:00
Makefile first import. 2011-11-11 21:36:22 +09:00
README.mkd Updating README 2012-03-02 00:47:25 +08:00
sqlite3.go For boolean values, marshal true to SQLite 1, not -1 2012-03-02 00:47:26 +08:00
sqlite3_test.go Added additional testcase for boolean roundtrips 2012-03-02 00:47:25 +08:00

README.mkd

go-sqlite3

DESCRIPTION

sqlite3 driver for go that using database/sql

LICENSE

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