Golang SQLCipher driver conforming to the built-in database/sql interface and using the latest sqlite3 code.
Go to file
mattn ea3ab4d8f5 Merge pull request #152 from rhomel/master
add Version func for retrieving SQLite library version info
2014-10-13 20:00:57 +09:00
_example Update simple.go (very small change) 2014-07-29 11:46:30 -07:00
sqlite3_test Rename 2014-07-04 10:25:27 +09:00
.travis.yml Use goveralls -repotoken 2014-02-07 09:34:58 +09:00
LICENSE Add LICENSE file 2014-08-18 16:52:12 +09:00
README.md Add note about license of amalgamation code 2014-08-18 17:05:50 +09:00
backup.go Add one blank line for godoc 2014-08-18 17:00:59 +09:00
doc.go Remove license header from doc.go because it appear in godoc 2014-08-18 16:58:14 +09:00
error.go Add one blank line for godoc 2014-08-18 17:00:59 +09:00
error_test.go Add one blank line for godoc 2014-08-18 17:00:59 +09:00
sqlite3.c Upgrade amalgamation code 2014-07-11 12:26:33 +09:00
sqlite3.go add Version func for retrieving SQLite library version info 2014-10-13 11:05:49 +09:00
sqlite3.h Upgrade amalgamation code 2014-07-11 12:26:33 +09:00
sqlite3_other.go Add license header 2014-08-18 16:56:31 +09:00
sqlite3_test.go Fix for sqlite3_test import. 2014-08-20 16:13:15 +02:00
sqlite3_windows.go Merge commit '3d78a08b9f3307ac3874f5c120f7d4166c62efb9' 2014-09-10 15:02:09 +09:00
sqlite3ext.h Upgrade amalgramation code 2013-08-13 21:44:05 +09:00

README.md

go-sqlite3

Build Status Coverage Status

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

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

sqlite.c, sqlite3.h, sqlite3ext.h

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)