-
Currently it produces this error when attempting to use [Associated Constants](https://doc.rust-lang.org/reference/items/associated-items.html#associated-constants):
```
error[E0401]: can't use gene…
-
SQLite is stored in a file, not with a service. Makes things simpler. Look at https://github.com/jgallagher/rusqlite
-
As mention on #747 I am working on wrapper for C++ (static) library that include sqlite3.o.
So I need to tell rusqlite that I already has sqlite3.o and `in_gecko` comes to play.
Let's suppose I have…
-
You need to disable lto at PKGBUILD to compile properly the program, if not an error will occur. Please add '!lto' into options array
-
Some sqlite pragmas return a value. For example, `mmap_size` (running in sqlite shell):
```
sqlite> pragma mmap_size=1024;
1024
```
The libsql driver's `Exec` method fails with an "Execute re…
-
If you look at the source and comments of the function `ensure_safe_sqlite_threading_mode`, it looks like it's trying to guard against the threat of being linked against a version of libsqlite3 that w…
-
BDK website states the following:
> Cross Platform
The core logic is feature rich allowing you to build any wallet from scratch on mobile, desktop and **even WebAssembly**.
Yet, when trying to us…
-
I'd like to use rusqlite/libsqlite3-sys from an arm64 AWS lambda. rusqlite works fine locally using x86 lambda.
I'm using the bundled feature.
```
rusqlite = { version="0.27.0", features=["bundled…
-
- https://sqlite.org/appfileformat.html
- https://github.com/rusqlite/rusqlite
This would let me combine the quiz files, which use a custom format, and the results files, which are in JSON, into a…
-
Some options I found:
- https://github.com/sfackler/rust-postgres
- https://github.com/jgallagher/rusqlite
Any other?