aboutsummaryrefslogtreecommitdiff
path: root/doc.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* sqlite3_test.go: Move Go 1.13 test to sqlite3_go113_test.go (#883)Evan Jones2020-11-171-1/+1
| | | | | | | | | Commit 4f7abea96e added a test that uses Conn.Raw, which was added in Go >= 1.13. The go-sqlite3 project runs tests with Go >= 1.11. Remove the test from sqlite3_test.go, so it only runs with the correct versions of Go. Instead of adding a new test, modify the existing test that already uses Conn.Raw() to check the type of driverConn.
* doc.go: you can use Conn.Raw to get *SQLiteConn (#882)Evan Jones2020-11-161-3/+13
| | | | This can be easier that registering a new driver, in some cases. Add a test to verify that this works.
* Expand documentation for extension functions (#880)Macaully James Muir2020-11-161-3/+16
| | | | This relates to #870; it's not immediately clear that you need to pass a different driver name to sql.Open from the documentation.
* Removing an unused C import to allow for "buildable" go files. Fixes ↵Mark Bates2017-01-181-2/+0
| | | | https://github.com/mattn/go-sqlite3/issues/374
* Make Go 1.7 fail compilationFilippo Valsorda2016-09-031-0/+2
| | | | | | | | | | | The package is useless without cgo, but Go 1.7 will happily build it since doc.go is a pure-Go file, even if CGO_ENABLED=0, like when cross-compiling. This is particularly problematic since the package is usually imported for its side effects, and users would successfully build a broken binary. Workaround golang/go#16981
* Fix sqlite "regexp" function name in documentationTim Retout2016-03-241-1/+1
|
* Fix minor typos in commentsPhilip O Toole2016-02-231-9/+9
|
* Implement support for passing Go functions as custom functions to SQLite.David Anderson2015-08-211-3/+20
| | | | Fixes #226.
* Remove license header from doc.go because it appear in godocmattn2014-08-181-5/+0
|
* Add license headermattn2014-08-181-0/+5
|
* Add docmattn2014-07-041-0/+95