aboutsummaryrefslogtreecommitdiff
path: root/sqlite3_omit_load_extension.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* ADD: User authenticationGert-Jan Timmer2018-05-301-24/+0
| | | | | | | | * 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
* 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 LoadExtension when omit_load_extension is specifiedZbigniew Mandziejewicz2016-04-181-0/+4
|
* introduce ability to pass sqlite_omit_load_extensionJessica Frazelle2015-09-041-0/+19
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>