aboutsummaryrefslogtreecommitdiff
path: root/sqlite3_load_extension.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Build with "go tool" and hackishly bundle code from same package into one ↵EuAndreh2024-08-121-85/+0
| | | | file each
* go fmt ./...Yasuhiro Matsumoto2024-01-251-0/+1
|
* change angle bracket import to quotes (#868)Hanzhen Yi2021-10-261-1/+1
|
* Fix #860 extenstion entry bug (#861)Yunus Ayar2020-10-021-1/+1
| | | Fix overshadowing of entrypoint variable.
* report actual error message if sqlite3_load_extension fails (#800)rittneje2020-04-161-12/+26
| | | | | | | * report actual error message if sqlite3_load_extension fails * more fixes and test cases Co-authored-by: Jesse Rittner <jrittner@lutron.com>
* Add build constraints for non cgoYasuhiro Matsumoto2019-11-181-1/+1
|
* fmt updateGert-Jan Timmer2018-05-271-0/+1
| | | | | | Fix: Placed all +build tags in the same location Fix: Split CFLAGS, LDFLAGS into seperate lines for readability and lookup Fix: Placed empty line between copyright comments and build tags for readability Fix: Placed OS specfic cgo flags at the end if the cgo sections contains multiple lines.
* disable extension when loading failedYasuhiro Matsumoto2017-03-211-0/+1
|
* go vet && golintYasuhiro Matsumoto2016-11-051-0/+1
|
* update amalgamation codeYasuhiro Matsumoto2016-08-111-0/+4
|
* Expose LoadExtension with entry pointZbigniew Mandziejewicz2016-04-181-0/+24
|
* introduce ability to pass sqlite_omit_load_extensionJessica Frazelle2015-09-041-0/+39
sqlite_omit_load_extension is a go build tag which behaves much like its C counterpart SQLITE_OMIT_LOAD_EXTENSION Signed-off-by: Jessica Frazelle <acidburn@docker.com>