forked from mirror/go-sqlcipher
Golang SQLCipher driver conforming to the built-in database/sql interface and using the latest sqlite3 code.
3524ead0a5
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