diff options
author | EuAndreh <eu@euandre.org> | 2024-10-20 20:30:37 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-10-20 20:33:48 -0300 |
commit | dcd536348e52686758ec76f68dc0157804f763f9 (patch) | |
tree | 0335e1a7a1d95b9c0386319504b567809237c24a /README.md | |
parent | Shoehorn project into default golang skeleton structure (diff) | |
download | golite-dcd536348e52686758ec76f68dc0157804f763f9.tar.gz golite-dcd536348e52686758ec76f68dc0157804f763f9.tar.xz |
Revert c3a3cf9d7aed9b3c48acbe31fd48f2c27549a570
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -506,7 +506,7 @@ For an example, see [dinedal/go-sqlite3-extension-functions](https://github.com/ - Why I'm getting `no such table` error? - Why is it racy if I use a `sql.Open("acude", ":memory:")` database? + Why is it racy if I use a `sql.Open("golite", ":memory:")` database? Each connection to `":memory:"` opens a brand new in-memory sql database, so if the stdlib's sql engine happens to open another connection and you've only @@ -545,7 +545,7 @@ For an example, see [dinedal/go-sqlite3-extension-functions](https://github.com/ Example: ```go - db, err := sql.Open("acude", "file:locked.sqlite?cache=shared") + db, err := sql.Open("golite", "file:locked.sqlite?cache=shared") ``` Next, please set the database connections of the SQL package to 1: |