Golang SQLCipher driver conforming to the built-in database/sql interface and using the latest sqlite3 code.
Go to file
xeodou 04d43c043e Upgrade to the latest sqlcipher. 2018-05-23 23:43:09 +08:00
_example Upgrade to the latest sqlcipher. 2018-05-23 23:43:09 +08:00
tool bump sqlite 3.22.0 2018-02-07 19:47:10 +09:00
.gitignore add *.o 2016-08-11 18:43:49 +09:00
.travis.yml Updated travis.yml 2017-10-22 14:57:02 +03:00
LICENSE Update sqlcipher to 3.11.0 2016-07-07 15:43:10 +08:00
README.md Upgrade to the latest sqlcipher. 2018-05-23 23:43:09 +08:00
backup.go fix breaking compatibility. 2017-03-21 09:14:48 +09:00
backup_test.go Test the error reporting when preparing to perform a backup. 2016-09-23 08:41:32 -04:00
callback.go Merge branch 'master' into master 2017-08-30 19:57:18 +09:00
callback_test.go Move argument converters to callback.go, and optimize return value handling. 2015-08-21 16:37:45 -07:00
doc.go Removing an unused C import to allow for "buildable" go files. Fixes https://github.com/mattn/go-sqlite3/issues/374 2017-01-18 17:14:12 +01:00
error.go fix breaking compatibility. 2017-03-21 09:14:48 +09:00
error_test.go fix error message 2017-11-19 00:09:25 +09:00
sqlite3-binding.c Upgrade to the latest sqlcipher. 2018-05-23 23:43:09 +08:00
sqlite3-binding.h Upgrade to the latest sqlcipher. 2018-05-23 23:43:09 +08:00
sqlite3.go Upgrade to the latest sqlcipher. 2018-05-23 23:43:09 +08:00
sqlite3_context.go rename 2017-03-05 21:40:25 +09:00
sqlite3_fts3_test.go FTS4 is not available on Trusty 2016-04-23 00:00:49 +08:00
sqlite3_fts5.go Conditional build for the FTS5 Extension 2016-03-07 16:20:02 +09:00
sqlite3_go18.go Add static_mock.go to allow building with CGO_ENABLED=0 2018-01-31 22:24:37 -06:00
sqlite3_go18_test.go Fix race in ExecContext 2017-11-21 13:40:00 +01:00
sqlite3_icu.go remove trailing space 2016-11-05 00:28:43 +09:00
sqlite3_json1.go Conditional build for the JSON1 Extension 2016-02-28 09:53:54 +01:00
sqlite3_libsqlite3.go support Solaris 2017-08-30 13:19:01 +09:00
sqlite3_load_extension.go disable extension when loading failed 2017-03-21 00:47:07 +09:00
sqlite3_omit_load_extension.go Disable LoadExtension when omit_load_extension is specified 2016-04-18 19:58:56 +08:00
sqlite3_other.go support Solaris 2017-08-30 13:19:01 +09:00
sqlite3_solaris.go add build constraint for solaris 2018-01-22 10:29:16 +09:00
sqlite3_test.go Upgrade to the latest sqlcipher. 2018-05-23 23:43:09 +08:00
sqlite3_trace.go fix type of event code 2018-01-29 11:15:57 +09:00
sqlite3_type.go go vet && golint 2016-11-06 13:16:38 +09:00
sqlite3_vtable.go Adding unit test for VTable Insert/Update/Delete 2017-04-07 14:23:08 +07:00
sqlite3_vtable_test.go Adding unit test for VTable Insert/Update/Delete 2017-04-07 14:23:08 +07:00
sqlite3_windows.go Fix compile for old mingw32 2015-12-30 00:19:24 +02:00
sqlite3ext.h Upgrade to the latest sqlcipher. 2018-05-23 23:43:09 +08:00
static_mock.go Add static_mock.go to allow building with CGO_ENABLED=0 2018-01-31 22:24:37 -06:00
wercker.yml Install libssl-dev 2017-02-03 16:07:57 +08:00

README.md

go-sqlcipher

wercker status

SQLCipher driver conforming to the built-in database/sql interface and using the latest sqlite3 code.

which is 3.20.1

Working with sqlcipher version which is 3.4.2

It's wrapper with

  • go-sqlite3 sqlite3 driver for go that using database/sql.
  • SQLCipher SQLCipher is an SQLite extension that provides 256 bit AES encryption of database files.
  • Using openssl as the 256 bit AES encryption.

Have't build test in a windows machine or linux machine Working in my macbook-air

Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.0 (clang-600.0.56) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin14.3.0
Thread model: posix

OpenSSL 0.9.8zd 8 Jan 2015
built on: Mar  9 2015
platform: darwin64-x86_64-llvm
options:  bn(64,64) md2(int) rc4(ptr,char) des(idx,cisc,16,int) blowfish(idx)
compiler: -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O3 -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DMD32_REG_T=int -DOPENSSL_NO_IDEA -DOPENSSL_PIC -DOPENSSL_THREADS -DZLIB -mmacosx-version-min=10.6
OPENSSLDIR: "/System/Library/OpenSSL"

Installation

This package can be installed with the go get command:

go get github.com/xeodou/go-sqlcipher

go-sqlcipher is cgo package. If you want to build your app using go-sqlcipher, you need gcc. However, if you install go-sqlcipher with go install github.com/xeodou/go-sqlcipher, you don't need gcc to build your app anymore.

Documentation

API documentation can be found here: http://godoc.org/github.com/xeodou/go-sqlcipher

Examples can be found under the ./_example directory

FAQ

The golang code is copy from go-sqlite3 If you have some issue, maybe you can find from https://github.com/mattn/go-sqlite3/issues

Here is some help from go-sqlite3 project.

  • Want to build go-sqlite3 with libsqlite3 on my linux.

    Use go build --tags "libsqlite3 linux"

  • Want to build go-sqlite3 with libsqlite3 on OS X.

    Install sqlite3 from homebrew: brew install sqlite3

    Use go build --tags "libsqlite3 darwin"

  • Want to build go-sqlite3 with icu extension.

    Use go build --tags "icu"

    Available extensions: json1, fts5, icu

  • Can't build go-sqlite3 on windows 64bit.

    Probably, you are using go 1.0, go1.0 has a problem when it comes to compiling/linking on windows 64bit. See: https://github.com/mattn/go-sqlite3/issues/27

  • Getting insert error while query is opened.

    You can pass some arguments into the connection string, for example, a URI. See: #39

  • Do you want to cross compile? mingw on Linux or Mac?

    See: #106 See also: http://www.limitlessfx.com/cross-compile-golang-app-for-windows-from-linux.html

  • Want to get time.Time with current locale

    Use _loc=auto in SQLite3 filename schema like file:foo.db?_loc=auto.

  • Can I use this in multiple routines concurrently?

    Yes for readonly. But, No for writable. See #50, #51, #209, #274.

  • Why is it racy if I use a sql.Open("sqlite3", ":memory:") database?

    Each connection to :memory: opens a brand new in-memory sql database, so if the stdlib's sql engine happens to open another connection and you've only specified ":memory:", that connection will see a brand new database. A workaround is to use "file::memory:?mode=memory&cache=shared". Every connection to this string will point to the same in-memory database. See #204 for more info.

  • Print some waring messages like warning: 'RAND_add' is deprecated: first deprecated in OS X 10.7

    You can ignore these messages.

License

MIT:

sqlite3-binding.c, sqlite3-binding.h, sqlite3ext.h

The -binding suffix was added to avoid build failures under gccgo.

In this repository, those files are amalgamation code that copied from SQLCipher. The license of those codes are depend on the license of SQLCipher.

In this repository, those files are an amalgamation of code that was copied from SQLite3. The license of that code is the same as the license of SQLite3.

Original repository https://github.com/mattn/go-sqlite3 is under MIT.

Author

xeodou