aboutsummaryrefslogtreecommitdiff
path: root/sqlite3_load_extension.go (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-05-30Add: Reference to SpatialiteGert-Jan Timmer1-0/+11
Closes #512 [ci ckip]
2018-05-30update README.mdYasuhiro Matsumoto1-1/+3
2018-05-29Fix: Display of secure_delete error messageGert-Jan Timmer1-1/+1
2018-05-29Fix: Condition of queryOnly VariableGert-Jan Timmer1-1/+1
2018-05-29Fix: Connection DSN KeysGert-Jan Timmer2-15/+44
* Conform keys to match PRAGMA * UPD: README * Fix error of _auto_vacuum * Fix error of _case_sensitive_like * Fix error of _locking_mode * Fix error of _secure_delete
2018-05-29ADD: PRAGMA writable_schemaGert-Jan Timmer2-4/+36
2018-05-29ADD: PRAGMA synchronousGert-Jan Timmer2-1/+41
2018-05-29Add: Copyright for additional FeaturesGert-Jan Timmer7-2/+9
2018-05-29Add: PRAGMA secure_deleteGert-Jan Timmer4-1/+53
ADD: Connection PRAGMA ADD: Build tag for secure_delete mode: FAST
2018-05-29ADD: PRAGMA query_onlyGert-Jan Timmer2-0/+28
2018-05-29Add: Documentation for opening as ImmutableGert-Jan Timmer2-0/+10
2018-05-29ADD: PRAGMA locking_modeGert-Jan Timmer2-1/+29
2018-05-29ADD: PRAGMA journal_modeGert-Jan Timmer2-0/+26
2018-05-29Fix: String ToLower for PRAGMA'sGert-Jan Timmer1-4/+5
2018-05-29Update READMEGert-Jan Timmer2-0/+18
ADD: Comments for SQLite Access Mode ADD: Comments for SQLite Shared-Cache Mode UPD: README * Add Access Mode in Connection String Table
2018-05-29ADD: Additional Copyright lineGert-Jan Timmer1-0/+1
2018-05-29Update CommentsGert-Jan Timmer1-3/+3
2018-05-29ADD: PRAGMA ignore_check_constraintsGert-Jan Timmer2-0/+29
2018-05-29Update CommentsGert-Jan Timmer1-0/+1
2018-05-29ADD: PRAGMA defer_foreign_keysGert-Jan Timmer2-0/+35
2018-05-29Update Recursive TriggersGert-Jan Timmer2-2/+9
ADD: Multiple Key
2018-05-29Fix: pkeyGert-Jan Timmer1-3/+5
Ensure pkey is empty for next condition
2018-05-29Update Foreign Keys PRAGMAGert-Jan Timmer2-5/+10
ADD: Multiple key
2018-05-29Update Busy Timeout PRAGMAGert-Jan Timmer2-10/+19
ADD: multiple key
2018-05-29ADD: PRAGMA case_sensitive_likeGert-Jan Timmer2-11/+51
ADD: Comments UPD: README
2018-05-29Update Connection OptionsGert-Jan Timmer2-46/+90
* Rewrite order of options * ADD: PRAGMA auto_vacuum * ADD: Multi Boolean values * UPD: README * FIX: Case-Sensitive values * Reduced code for: - foreign_keys - recursive_triggers
2018-05-27Update READMEGert-Jan Timmer1-0/+31
Add DSN Connections string table. [ci skip]
2018-05-27Update TOC to match READMEGert-Jan Timmer1-2/+1
[ci skip]
2018-05-27Exclude vscode settingsGert-Jan Timmer1-0/+3
2018-05-27fmt updateGert-Jan Timmer23-13/+42
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.
2018-05-26Moved Alpine to Linux SectionGert-Jan Timmer1-10/+8
[ci skip]
2018-05-26Update documentationGert-Jan Timmer1-15/+181
Compile Section Closes #175 Compile Section Closes #201 Compile Section Closes #206 Compile Section Closes #404 Compile Section Closes #217 Compile Section Closes #224 Compile Section Closes #234 Compile Section Closes #242 Feature table Closes #255 Description Section Closes #232 Golang:1.6 not supported Closes #272 Golang:1.5 not supported + compilation section Closes #283 usleep Implemented Closes #285 FAQ Section Closes #289 Compile Section closes #295 FAQ Section Closes #305 PR339 Closes #318 #321 Compilation Section Closes #341 PR407 Closes #364 Feature `sqlite_vtable` Closes #393 Compile Section Closes #416 sqlite_trace feature Closes #433 Compilation Section Closes #435 Compilation Section Closes #443 Golang:1.6 Not Supported Closes #445 Compilation Section Closes #451 Compilation Section Closes #467 Compilation Section Closes #491 Compilation Section Closes #495 Compilation Section Closes #505 Compilation Section Closes #557 Compilation Section Closes #560 [ci skip]
2018-05-26Added FAQ item for compile error `-fPIC`Gert-Jan Timmer1-0/+14
Closes #120
2018-05-26Relocated FAQ item to usage subsection of FeaturesGert-Jan Timmer1-10/+20
2018-05-25Code format updateGert-Jan Timmer1-1/+1
[ci skip]
2018-05-25Implementation for usleepGert-Jan Timmer2-13/+39
Implement `usleep` for Windows OS.