0
0
mirror of https://github.com/mattn/go-sqlite3.git synced 2025-06-04 01:10:35 +00:00

31 Commits

Author SHA1 Message Date
aa1e904220 Update amalgamation code 2022-05-13 11:15:23 +09:00
2df077b74c Update amalgamation 2022-02-28 09:00:54 +09:00
7fbc50c941 Update amalgamation code 2021-12-29 22:26:06 +09:00
cba6eaee48 Update amalgamation code ()
* Update amalgamation code

* Apply realPy's patch
2021-07-15 22:31:14 +09:00
1157a4212d Update amalgamation code () 2021-04-15 00:44:23 +09:00
52436d4074 Update amalgamation code () 2020-12-26 23:18:41 +09:00
2329c6ea75 Update amalgamation code ()
* Update amalgamation code

* Drop go1.9 and go1.10
2020-08-19 20:15:57 +09:00
baaf8a9784 upgrade amalgamation code () 2020-06-06 12:49:38 +09:00
9bdaffc12b upgrade amalgamation code () 2020-01-28 19:25:19 +09:00
a1e7f13af0 upgrade amalgamation code 2019-11-18 22:50:50 +09:00
b612a2feea upgrade amalgamation code 2019-07-16 14:56:09 +09:00
4bbd87b29d upgrade amalgamation code 2019-04-24 16:55:17 +09:00
93716266ad upgrade amalgamation code 2019-03-15 16:07:56 +09:00
aa13f26d02 upgrade amalgamation code 2018-12-18 09:11:45 +09:00
9cb060a131 upgrade amalgamation code 2018-09-26 17:18:13 +09:00
554bc0fb2e Upgrade to SQLite 3.25.0
Fixes , 
2018-09-18 17:02:27 +09:00
a06d1c9512 bump sqlite3 3.24.0 and add TestUpsert. 2018-06-12 13:55:59 +02:00
6ae7f98274 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
2018-05-30 23:48:02 +02:00
d4680fe41a bump sqlite3 3.23.1 2018-04-17 22:18:20 +09:00
953b2322bf bump sqlite 3.23.0
closes 
2018-04-04 22:48:19 +09:00
a9601262ce bump sqlite 3.22.0
closes 
2018-02-07 19:47:10 +09:00
e5a5361164 upgrade SQLite3 amalgamation code 2017-11-18 00:25:05 +09:00
95df624454 upgrade to sqlite-amalgamation-3170000 2017-02-16 15:59:24 +09:00
ca5e381972 upgrade amalgamation code 2016-11-11 09:01:23 +09:00
f6e7921d24 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>
2016-10-28 10:28:17 +02:00
ee996d6946 use amalgamation 3.14.0 2016-08-11 01:47:31 +09:00
297d6f8d2d update amalgamation code 2016-08-11 01:15:52 +09:00
5505c7c92e upgrade sqlite amalgamation to 3.12.2 2016-05-14 11:53:28 +02:00
3a5555302e 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 
2016-04-02 12:48:26 +02:00
ee9da4840d hack to use libsqlite3
$ go build -tags "libsqlite3 windows"
2015-06-12 13:26:42 +09:00
3d6c6f9345 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 

Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
2015-03-11 16:19:50 -04:00