diff options
| author | 2024-04-14 20:50:44 +0200 | |
|---|---|---|
| committer | 2024-04-14 20:50:44 +0200 | |
| commit | 19dd52b7b7e9fa5ec029c4ac3bd53fb41e5be12c (patch) | |
| tree | 453f927a6926b4f778a4be2a14164896734a60f0 /c.zig | |
| parent | Merge pull request #157 from vrischmann/update-latest-zig (diff) | |
| parent | ci: run with -fqemu and -frosetta (diff) | |
| download | zig-sqlite-19dd52b7b7e9fa5ec029c4ac3bd53fb41e5be12c.tar.gz zig-sqlite-19dd52b7b7e9fa5ec029c4ac3bd53fb41e5be12c.tar.xz zig-sqlite-19dd52b7b7e9fa5ec029c4ac3bd53fb41e5be12c.zip | |
Merge pull request #158 from vrischmann/workaround-sqlite-transient
Workaround SQLITE_TRANSIENT
Diffstat (limited to 'c.zig')
| -rw-r--r-- | c.zig | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -5,6 +5,7 @@ pub const c = if (@hasDecl(root, "loadable_extension")) | |||
| 5 | else | 5 | else |
| 6 | @cImport({ | 6 | @cImport({ |
| 7 | @cInclude("sqlite3.h"); | 7 | @cInclude("sqlite3.h"); |
| 8 | @cInclude("workaround.h"); | ||
| 8 | }); | 9 | }); |
| 9 | 10 | ||
| 10 | // versionGreaterThanOrEqualTo returns true if the SQLite version is >= to the major.minor.patch provided. | 11 | // versionGreaterThanOrEqualTo returns true if the SQLite version is >= to the major.minor.patch provided. |