aboutsummaryrefslogtreecommitdiff
path: root/sqlite3-binding.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update amalgamation code (#955)mattn2021-07-151-2949/+4237
| | | | | * Update amalgamation code * Apply realPy's patch
* Update amalgamation code (#940)mattn2021-04-151-4638/+7113
|
* Update amalgamation code (#896)mattn2020-12-261-720/+1957
|
* Update amalgamation code (#842)mattn2020-08-191-9287/+10188
| | | | | * Update amalgamation code * Drop go1.9 and go1.10
* upgrade amalgamation code (#821)mattn2020-06-061-1765/+2932
|
* upgrade amalgamation code (#777)mattn2020-01-281-5251/+8638
|
* upgrade amalgamation codeYasuhiro Matsumoto2019-11-181-3957/+5232
|
* upgrade amalgamation codeYasuhiro Matsumoto2019-07-161-3102/+4013
|
* upgrade amalgamation codeYasuhiro Matsumoto2019-04-241-3658/+4697
|
* upgrade amalgamation codeYasuhiro Matsumoto2019-03-151-3905/+5209
|
* upgrade amalgamation codeYasuhiro Matsumoto2018-12-181-642/+2012
|
* upgrade amalgamation codeYasuhiro Matsumoto2018-09-261-57/+85
|
* Fix buildYasuhiro Matsumoto2018-09-181-1/+1
|
* Upgrade to SQLite 3.25.0Yasuhiro Matsumoto2018-09-181-6986/+14257
| | | | Fixes #634, #635
* bump sqlite3 3.24.0 and add TestUpsert.Yoann Cerda2018-06-121-3460/+5383
|
* ADD: User authenticationGert-Jan Timmer2018-05-301-1/+356
| | | | | | | | * 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
* bump sqlite3 3.23.1Yasuhiro Matsumoto2018-04-171-1273/+1376
|
* bump sqlite 3.23.0Yasuhiro Matsumoto2018-04-041-828/+3056
| | | | closes #545
* bump sqlite 3.22.0Yasuhiro Matsumoto2018-02-071-3175/+5433
| | | | closes #526
* upgrade SQLite3 amalgamation codeYasuhiro Matsumoto2017-11-181-6685/+10634
|
* workaround for a compilerYasuhiro Matsumoto2017-03-011-1/+2
| | | | | | Apple LLVM version 7.0.2 (clang-700.1.81) Close #386
* upgrade to sqlite-amalgamation-3170000Yasuhiro Matsumoto2017-02-161-2312/+4230
|
* upgrade amalgamation codeYasuhiro Matsumoto2016-11-111-3371/+5005
|
* actually link to <sqlite3.h> when -tags libsqlite3Christian Brauner2016-10-281-0/+5
| | | | | | | | | | | | | | | 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>
* use amalgamation 3.14.0Yasuhiro Matsumoto2016-08-111-353/+268
|
* update amalgamation codeYasuhiro Matsumoto2016-08-111-3647/+12263
|
* upgrade sqlite amalgamation to 3.12.2Steffen2016-05-141-7135/+10411
|
* Move sqlite3 amalgation files a directory up.David Bariod2016-04-021-2/+186041
| | | | | | 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
* hack to use libsqlite3Yasuhiro Matsumoto2015-06-121-147780/+2
| | | | $ go build -tags "libsqlite3 windows"
* Rename sqlite3.{c,h} to sqlite3-binding.{c,h}Stéphane Graber2015-03-111-0/+147782
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>