mirror of https://github.com/mattn/go-sqlite3.git
a620c1a086
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 |
||
---|---|---|
example | ||
Makefile | ||
README.mkd | ||
sqlite3.go | ||
sqlite3_test.go |
README.mkd
go-sqlite3
DESCRIPTION
sqlite3 driver for go that using database/sql