aboutsummaryrefslogtreecommitdiff
path: root/sqlite3-binding.h (follow)
Commit message (Expand)AuthorAgeFilesLines
* upgrade amalgamation codeYasuhiro Matsumoto2019-11-181-8/+73
* upgrade amalgamation codeYasuhiro Matsumoto2019-07-161-7/+46
* upgrade amalgamation codeYasuhiro Matsumoto2019-04-241-11/+48
* upgrade amalgamation codeYasuhiro Matsumoto2019-03-151-28/+53
* upgrade amalgamation codeYasuhiro Matsumoto2018-12-181-12/+130
* upgrade amalgamation codeYasuhiro Matsumoto2018-09-261-3/+3
* Upgrade to SQLite 3.25.0•••Fixes #634, #635 Yasuhiro Matsumoto2018-09-181-77/+216
* bump sqlite3 3.24.0 and add TestUpsert.Yoann Cerda2018-06-121-9/+266
* ADD: User authentication•••* User Authentication Implementation * Rename file to conform to fileformat `sqlite3_*_omit.go` * Updated sqlite3-binding.* with new upgrade tool * Add: callbackRetNil required for error type return because of adding `RegisterFunc`s directly on the connection. * Add: TestCreateAuthDatabase Gert-Jan Timmer2018-05-301-1/+97
* bump sqlite3 3.23.1Yasuhiro Matsumoto2018-04-171-5/+33
* bump sqlite 3.23.0•••closes #545 Yasuhiro Matsumoto2018-04-041-92/+414
* bump sqlite 3.22.0•••closes #526 Yasuhiro Matsumoto2018-02-071-18/+118
* upgrade SQLite3 amalgamation codeYasuhiro Matsumoto2017-11-181-165/+422
* upgrade to sqlite-amalgamation-3170000Yasuhiro Matsumoto2017-02-161-68/+167
* upgrade amalgamation codeYasuhiro Matsumoto2016-11-111-267/+296
* actually link to <sqlite3.h> when -tags libsqlite3•••Building with -tags libsqlite3 used the sqlite3.h from the system but the go compiler will compile all *.{c,h} files in the same direcory: "When the Go tool sees that one or more Go files use the special import "C", it will look for other non-Go files in the directory and compile them as part of the Go package. Any .c, .s, or .S files will be compiled with the C compiler." (https://golang.org/cmd/cgo/) So if users actually want to link against the system sqlite3 we should make sqlite3-binding.* a noop. Signed-off-by: Christian Brauner <christian.brauner@canonical.com> Christian Brauner2016-10-281-0/+5
* use amalgamation 3.14.0Yasuhiro Matsumoto2016-08-111-3/+3
* update amalgamation codeYasuhiro Matsumoto2016-08-111-46/+1655
* upgrade sqlite amalgamation to 3.12.2Steffen2016-05-141-15/+118
* Move sqlite3 amalgation files a directory up.•••The purpose is to ease the use of vendoring files like godep. The C sqlite3 files have been added a go compilation conditional flag Fix #293 David Bariod2016-04-021-3/+8628
* hack to use libsqlite3••• $ go build -tags "libsqlite3 windows" Yasuhiro Matsumoto2015-06-121-7476/+3
* Rename sqlite3.{c,h} to sqlite3-binding.{c,h}•••This fixes the problem where when building with gccgo, sqlite3.c is overwritten, leading to a build failure. An alternative would have been to move sqlite3*.{c,h} to a subdirectory, but that seems to confuse the linker a fair bit and would just swap one implementation-dependent issue for another. Closes #20 Signed-off-by: Stéphane Graber <stgraber@ubuntu.com> Stéphane Graber2015-03-111-0/+7478