aboutsummaryrefslogtreecommitdiff
path: root/README.md (follow)
Commit message (Collapse)AuthorAgeFilesLines
* src/golite.go: Change driverName to "golite" and make it `const`EuAndreh2024-10-051-2/+2
|
* Update README.mdPartho Kumar Rajvor2023-05-171-1/+1
|
* Add build tags to support both x86 and ARM compilation on macOS (#1069)Denis Dmitriev2023-02-231-14/+23
| | | | | | | | | | | | | * Add build tags to support both x86 and ARM compilation on macOS * Documentation fix: command line for build under macOS * Global replace 'macOS X' -> 'macOS'. Fix typo in -tags cmd line param * `README.md`: fix all `--tags` -> `-tags` --------- Co-authored-by: Denis Dmitriev <dmitriev@itspartner.net>
* Add Serialize and Deserialize support (#1089)Philip O'Toole2022-11-171-0/+1
| | | Add support for Serialize and Deserialize, which wrap sqlite3_serialize and sqlite3_deserialize.
* Update README.md to include vtable feature (#1100)David Vassallo2022-10-181-0/+1
| | | Added documentation for sqlite_vtable build tag to the README.
* Cross Compiling for Mac OS via `musl-cross`Luca Guidi2022-09-181-5/+4
| | | | | | | | | | | | | # Enhancement Update `README.md` with new instructions for Mac OS cross compiling. # Why? The current suggested solution `xgo` is no longer maintained (GitHub archived repository). # Credits Credits go to Pieter Claerhout (@pieterclaerhout) and his blog post: https://www.yellowduck.be/posts/cross-compile-a-go-package-which-uses-sqlite3
* Add support for sqlite_math_functions tag (#1059)Levi Gruspe2022-09-171-0/+1
| | | | | Add support for SQLITE_ENABLE_MATH_FUNCTIONS compile-time option via the sqlite_math_functions build tag. Co-authored-by: Dominik Kraus <dominik.kraus@nktek.de>
* Fix "ennviroment" (#1077)RewardedIvan2022-09-011-1/+1
| | | Fix typo in README
* Update README to fix reference URLYoshiki Shibukawa2022-09-011-1/+1
| | | R.I.P. godoc.org
* Add build tag to enable OSTRACE() loggingBen Johnson2022-08-161-0/+1
| | | | | | | This commit adds the `sqlite_os_trace` build tag which sets the `SQLITE_FORCE_OS_TRACE` and `SQLITE_DEBUG_OS_TRACE` compilation flags. This produces verbose debugging output of every operating system call made by SQLite.
* chore: readme: Fix link, typos, copy editing (#974)Ross Smith II2021-10-221-56/+55
| | | | | | | * chore: readme: Fix link, typos, copy editing Also closes #914, #939. * Update README.md
* Add ?_cache_size=[..] to connection parameters (#894)Martin Tournoij2020-12-261-0/+2
| | | | | | | | | | | | | | | | | | Add a shortcut for PRAGMA cache_size; this is a pretty useful setting: the default of -2000 (2M) is not especially high, and a lot of people will probably want to increase this. For example, while running a bunch of fairy expensive queries in parallel: With SetMaxOpenConns(1): -2000: 5762ms -20000: 4714ms With SetMaxOpenConns(20): -2000: 3067ms -20000: 2532ms Which isn't a bad performance boost for changing a single number.
* README.md: use link in markdown (#859)Buk Bukowski2020-11-171-1/+1
|
* coveralls to codecov (#845)raa01212020-08-251-1/+1
| | | | | * coveralls to codecov * README badge coveralls to codecov
* Update README.mdYasuhiro Matsumoto2020-08-251-2/+2
|
* Update README.mdYasuhiro Matsumoto2020-06-181-1/+3
|
* Edited note in README (#817)turtlemaster192020-06-011-1/+1
|
* Document requirements for cross compiling from OSX (#804)Vishnu Mohandas2020-05-161-3/+9
| | | | | | | * Document requirements for cross compiling from OSX Inspiration: https://github.com/mattn/go-sqlite3/issues/384#issuecomment-433584967 * Document cross compilation steps using xgo for MACOSX
* Add extension-functions.c info to README (#779)Paul Bergeron2020-04-161-0/+10
|
* Update README.mdYasuhiro Matsumoto2020-01-231-0/+2
|
* Added financial contributors to the READMEJess2019-10-301-0/+31
|
* Closes #597G.J.R. Timmer2019-08-221-4/+22
|
* docs: fix typoJason Cooke2019-07-091-1/+1
|
* 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
| |
* | Fix typoYasuhiro Matsumoto2019-02-181-1/+1
|/ | | | [ci skip]
* Fix typo in READMEMasataka Pocke Kuwabara2019-01-041-1/+1
| | | | s/an/a/
* updating link to properly renderbk5212342018-11-171-1/+1
| | | fixing "[here](ttps://sourceforge.net/projects/tdm-gcc/)" to "[here](https://sourceforge.net/projects/tdm-gcc/)".
* update README.mdYasuhiro Matsumoto2018-11-091-3/+1
|
* Merge pull request #616 from jung-kurt/patch-1mattn2018-10-151-0/+1
|\ | | | | Update README: URL-encode connection options
| * Update README: URL-encode connection optionsKurt Jung2018-08-121-0/+1
| | | | | | This change could save users from having to dig into source code to see how connection options are parsed.
* | Remove extra backtick and fix Markdown formattingVladimir Rutsky2018-10-141-1/+1
| |
* | Fix typo in README.mdDaniel Thorn2018-10-121-1/+1
|/
* Fix typo in readmeIngve Vormestrand2018-07-021-1/+1
|
* fix/511Gert-Jan Timmer2018-06-121-3/+8
| | | | | Closes #511 [skip ci]
* fix/209Gert-Jan Timmer2018-06-121-1/+19
| | | | | Closes #209 [skip ci]
* Merge pull request #574 from GJRTimmer/update/travismattn2018-06-121-1/+2
|\ | | | | Follow official Release Policy
| * Removed Golang:1.8Gert-Jan Timmer2018-05-291-1/+2
| | | | | | Updated package for follow official Golang Release Policy.
* | Update User Authentication DocumentationGert-Jan Timmer2018-06-051-2/+28
| | | | | | References: #581
* | Add inital documentationGert-Jan Timmer2018-06-051-0/+95
| | | | | | References: #581
* | Add: Reference to SpatialiteGert-Jan Timmer2018-05-301-0/+11
| | | | | | | | | | Closes #512 [ci ckip]
* | update README.mdYasuhiro Matsumoto2018-05-301-1/+3
| |
* | Fix: Connection DSN KeysGert-Jan Timmer2018-05-291-4/+4
| | | | | | | | | | | | | | | | * 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
* | ADD: PRAGMA writable_schemaGert-Jan Timmer2018-05-291-0/+1
| |
* | ADD: PRAGMA synchronousGert-Jan Timmer2018-05-291-0/+1
| |
* | Add: PRAGMA secure_deleteGert-Jan Timmer2018-05-291-0/+2
| | | | | | | | ADD: Connection PRAGMA ADD: Build tag for secure_delete mode: FAST
* | ADD: PRAGMA query_onlyGert-Jan Timmer2018-05-291-0/+1
| |
* | Add: Documentation for opening as ImmutableGert-Jan Timmer2018-05-291-0/+1
| |