aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Added financial contributors to the READMEJess2019-10-301-0/+31
|/ /
* | Update FUNDING.ymlmattn2019-10-081-1/+1
| |
* | Merge pull request #750 from tpounds/add-new-go-versmattn2019-10-081-0/+2
|\ \ | | | | | | Add Go 1.12.x/1.13.x to CI
| * | Add Go 1.12.x/1.13.x to CI.Trevor Pounds2019-10-071-0/+2
|/ /
* | Merge pull request #747 from azavorotnii/open_journal_modemattn2019-09-241-6/+7
|\ \ | |/ |/| Fix Open() journal mode regression
| * Fix typo in "_locking_mode" DSN handlingAndrii Zavorotnii2019-09-231-1/+1
| |
| * Fix Open() journal mode regressionAndrii Zavorotnii2019-09-231-5/+6
|/ | | | | | | | | | | | | | [why] see https://github.com/mattn/go-sqlite3/issues/607 SQLite default journal mode is DELETE, but forcing it on open causes "database is locked" if other connection exists with WAL mode, for example. [how] Don't set DELETE mode if not set in DSN explicitly. [testing] Run tests in my project where WAL mode is used.
* Fix memory leak in ExpandedSQL (#738)Gert-Jan Timmer2019-08-221-0/+1
| | | Fixes: #733
* Fixed operatorG.J.R. Timmer2019-08-221-2/+2
|
* Fix _auth_* parameter checkG.J.R. Timmer2019-08-222-3/+27
| | | Fixes: #724
* Closes #597G.J.R. Timmer2019-08-228-9/+623
|
* Merge pull request #734 from gwd/out/fix-libsqlite3-darwin-buildmattn2019-08-201-0/+1
|\ | | | | darwin/libsqlite3: Also use the homebrew include path
| * darwin/libsqlite3: Also use the homebrew include pathGeorge Dunlap2019-08-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When building on darwin with the `libsqlite3` tag, go-sqlite3 adds the homebrew library path. It does not, however, add the homebrew include path, which means that the MacOS sqlite3 header is used instead. On my system, this results in build errors that look like this: ./sqlite3_load_extension.go:25:8: could not determine kind of name for C.sqlite3_enable_load_extension ./sqlite3_load_extension.go:33:8: could not determine kind of name for C.sqlite3_load_extension Add the homebrew include path as well, so that he header matches the libraries we're using. Signed-off-by: George Dunlap <george.dunlap@citrix.com>
* | Merge pull request #735 from mahler/mastermattn2019-08-201-1/+1
|\ \ | |/ |/| Issue #651: Fix of typo
| * Issue #651: Fix of typo=2019-08-191-1/+1
|/ | | | https://github.com/mattn/go-sqlite3/issues/651
* Merge pull request #732 from mattn/sqlite-amalgamation-3290000mattn2019-07-162-3110/+4060
|\ | | | | upgrade amalgamation code
| * upgrade amalgamation codeYasuhiro Matsumoto2019-07-162-3110/+4060
|/
* Merge pull request #731 from Jason-Cooke/patch-1mattn2019-07-091-1/+1
|\ | | | | docs: fix typo
| * docs: fix typoJason Cooke2019-07-091-1/+1
|/
* Merge pull request #727 from MichaelS11/mastermattn2019-06-203-11/+238
|\ | | | | Updated Ping and doTestOpen. Added TestOpenContext and TestFileCopyTruncate
| * Updated Ping to return ErrBadConnMichaelS112019-06-193-11/+238
|/ | | | | | Added TestOpenContext Added TestFileCopyTruncate Added ping to doTestOpen
* Merge pull request #725 from auxten/patch-1mattn2019-06-171-1/+1
|\ | | | | Fix typo in readme
| * Fix typo in readmeauxten2019-06-171-1/+1
|/
* Merge pull request #680 from rittneje/improve-faq-in-memory-shared-cachemattn2019-05-291-4/+8
|\ | | | | improve FAQ re: in-memory databases
| * more code formattingJesse Rittner2019-01-041-2/+2
| |
| * adding additional info to FAQ about in-memory databasesJesse Rittner2019-01-041-2/+6
| |
* | Create FUNDING.ymlmattn2019-05-241-0/+8
| |
* | Merge pull request #716 from mattn/fix-variadicmattn2019-05-111-1/+1
|\ \ | | | | | | Fix type of variadic
| * | Fix type of variadicYasuhiro Matsumoto2019-05-101-1/+1
|/ /
* | Merge pull request #712 from mattn/sqlite-amalgamation-3280000mattn2019-04-243-3677/+4759
|\ \ | | | | | | upgrade amalgamation code
| * | upgrade amalgamation codeYasuhiro Matsumoto2019-04-243-3677/+4759
|/ /
* | Merge pull request #702 from mattn/sqlite-amalgamation-3270200mattn2019-03-152-3936/+5265
|\ \ | | | | | | upgrade amalgamation code
| * | upgrade amalgamation codeYasuhiro Matsumoto2019-03-152-3936/+5265
|/ /
* | Merge pull request #695 from mattn/fix-typomattn2019-02-181-1/+1
|\ \ | | | | | | Fix typo
| * | Fix typoYasuhiro Matsumoto2019-02-181-1/+1
|/ / | | | | | | [ci skip]
* | Merge pull request #693 from egonelbre/unify-travis-runsmattn2019-02-111-19/+8
|\ \ | | | | | | Unify travis runs
| * | Remove separate go buildEgon Elbre2019-02-101-1/+0
| | |
| * | Faster travis runningEgon Elbre2019-02-101-18/+8
| |/
* | Merge pull request #692 from mattn/fix-688mattn2019-02-112-2/+21
|\ \ | |/ |/| Fix 688
| * Print type of resultYasuhiro Matsumoto2019-02-111-1/+1
| |
| * Add testYasuhiro Matsumoto2019-02-111-0/+20
| |
| * column_type SQLITE_TEXT returned as string by defaultDimitri Roche2019-02-111-8/+1
| |
| * column types text, varchar, *char return as strings:Dimitri Roche2019-02-111-2/+8
|/ | | | | | | As opposed to []byte arrays. This brings sqlite closer in line with other dbs like postgres, allowing downstream consumers to assume the scanned value is string across underlying dbs.
* Merge pull request #679 from pocke/an-amattn2019-01-051-1/+1
|\ | | | | Fix typo in README
| * Fix typo in READMEMasataka Pocke Kuwabara2019-01-041-1/+1
|/ | | | s/an/a/
* Merge pull request #675 from mattn/sqlite-amalgamation-3260000mattn2018-12-183-659/+2152
|\ | | | | upgrade amalgamation code
| * upgrade amalgamation codeYasuhiro Matsumoto2018-12-183-659/+2152
|/
* Merge pull request #673 from rittneje/revert-671mattn2018-12-092-16/+64
|\ | | | | Revert 671
| * fixed typoJesse Rittner2018-12-081-1/+1
| |
| * adding unit testJesse Rittner2018-12-081-0/+58
| |