diff options
| author | EuAndreh <eu@euandre.org> | 2024-10-18 17:54:26 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2024-10-20 03:36:18 -0300 |
| commit | f00c41fd4e6af8cd0db80c118a3bb4abef09604e (patch) | |
| tree | 46ad14d55cfe591691cf214076e8aea81edbfe18 /README.md | |
| parent | .gitignore: Remove .so (diff) | |
| download | golite-f00c41fd4e6af8cd0db80c118a3bb4abef09604e.tar.gz golite-f00c41fd4e6af8cd0db80c118a3bb4abef09604e.tar.xz | |
Shoehorn project into default golang skeleton structure
Diffstat (limited to '')
| -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("acudego", ":memory:")` database? + Why is it racy if I use a `sql.Open("acude", ":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("acudego", "file:locked.sqlite?cache=shared") + db, err := sql.Open("acude", "file:locked.sqlite?cache=shared") ``` Next, please set the database connections of the SQL package to 1: |
