aboutsummaryrefslogtreecommitdiff
path: root/sqlite3.go (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #300 from sqweek/issue184mattn2016-07-151-0/+6
|\
| * Fix inconsistent tx state with database/sql.sqweek2016-04-181-0/+6
* | Set SQLITE_DETERMINISTIC if undefinedZbigniew Mandziejewicz2016-04-231-0/+4
|/
* Move sqlite3 amalgation files a directory up.David Bariod2016-04-021-0/+4
* Add SQLiteRows.DeclTypes() methodZac Medico2016-03-061-6/+12
* Fix minor typos in commentsPhilip O Toole2016-02-231-3/+3
* Merge pull request #267 from ianlancetaylor/go16mattn2016-02-011-4/+4
|\
| * bind: pass &v[0] in direct call to CIan Lance Taylor2016-01-291-4/+4
* | callback: use handles rather than passing Go pointersIan Lance Taylor2016-01-291-2/+3
|/
* avoid cgoCheckPointer. ref https://github.com/golang/go/issues/12416Yasuhiro Matsumoto2015-12-301-2/+16
* Merge branch 'master' of https://github.com/mattn/go-sqlite3Yasuhiro Matsumoto2015-11-021-11/+11
|\
| * Store/retrieve timezones for time.Time values.Augusto Roman2015-10-091-11/+11
* | Merge branch 'pr/207'Yasuhiro Matsumoto2015-11-021-1/+1
|\ \ | |/ |/|
| * Fix doc commentLars Buitinck2015-06-051-1/+1
* | Add FTS4 unicode61 tokenizer supportlooi2015-09-211-1/+1
* | Merge pull request #229 from danderson/mastermattn2015-09-161-3/+320
|\ \
| * | Implement support for aggregation functions implemented in Go.David Anderson2015-09-151-33/+210
| * | Add support for interface{} arguments in Go SQLite functions.David Anderson2015-08-211-5/+8
| * | Implement support for variadic functions.David Anderson2015-08-211-10/+42
| * | Move argument converters to callback.go, and optimize return value handling.David Anderson2015-08-211-104/+18
| * | Implement support for passing Go functions as custom functions to SQLite.David Anderson2015-08-211-0/+191
* | | introduce ability to pass sqlite_omit_load_extensionJessica Frazelle2015-09-041-17/+2
|/ /
* / Add fix for go-sqlite3 truncating 64-bit integers when compiled by 32-bit min...kiwih2015-08-071-8/+8
|/
* Z suffix should be no-opYasuhiro Matsumoto2015-04-151-0/+1
* Merge pull request #194 from hallyn/tximm.2mattn2015-04-141-4/+23
|\
| * Add a txlock option when opening databases (v2)Serge Hallyn2015-04-131-4/+23
* | Fix NULs in text.Egon Elbre2015-04-121-1/+3
|/
* Merge pull request #188 from larsmans/optimizemattn2015-03-241-19/+23
|\
| * Change strlen(s) > 0 => *s != '\000'.Lars Buitinck2015-03-231-1/+1
| * Less C/Go border crossing to get database changesLars Buitinck2015-03-231-18/+22
* | Implement number-named parameters. Close #187mattn2015-03-241-3/+19
* | Revert a6c208564eccf3c6743f608ef88398a4ca84c5ebmattn2015-03-221-41/+3
* | Remove debug messagemattn2015-03-221-1/+0
* | Fix hang in testmattn2015-03-221-11/+12
* | Fix buildmattn2015-03-221-1/+2
* | Should use C.int()mattn2015-03-221-1/+1
* | revert 5253daf8561a6ca5015fd5ce79e4367912146be9 and add _busy_timeout query p...mattn2015-03-221-20/+25
* | Support $NNN-style named parameter. Close #187mattn2015-03-221-4/+57
* | Next() should wait while BUSY or LOCKED because return value is boolmattn2015-03-191-9/+17
|/
* Apply -lpthread withou windows.Yasuhiro Matsumoto2015-03-121-1/+0
* Link against pthreadStéphane Graber2015-03-111-0/+1
* Rename sqlite3.{c,h} to sqlite3-binding.{c,h}Stéphane Graber2015-03-111-1/+1
* Correct HasPrefix method nameAntoni Rościszewski2015-03-051-1/+1
* Don't modify dsn when has prefix file:mattn2015-03-061-1/+3
* Fix filename with loc parameterYasuhiro Matsumoto2015-03-051-1/+1
* Fix loc parsingmix32015-03-051-27/+31
* Fixed bug for loc parametermattn2015-03-051-16/+18
* cleanup codeYasuhiro Matsumoto2015-03-041-13/+8
* Add loc=XXX parameters to handle timezoneYasuhiro Matsumoto2015-03-041-8/+44
* Add FTS3 feature. Close #176Yasuhiro Matsumoto2015-02-241-0/+2