-
Rusqlite:
```rs
let conn = Connection::open_in_memory()?;
```
libSQL:
```rs
let db = Database::open(":memory:")?;
let conn = db.connect()?;
```
It would be better for compatibility if…
-
# Problem
The `cargo audit` tool shows vulnerabilities and warnings.
**2023-06-17 Update:** As dependencies and audit reports evolve, I've updated the content here for commit d2f105efe9e4a9aa3cb…
-
We are building an app for Windows that uses rusqlite with `winsqlite3` feature from the very beginning:
https://github.com/YtFlow/YtFlowCore/blob/40037e19a802b74f7a1fa0eeb363166228b05f57/ytflow/Ca…
bdbai updated
8 months ago
-
[rusqlite::types::ToSql](https://docs.rs/rusqlite/latest/rusqlite/types/trait.ToSql.html)
vs
[std::convert::TryInto](https://doc.rust-lang.org/std/convert/trait.TryInto.html)
[rusqlite::types::Fr…
gwenn updated
9 months ago
-
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…
-
I need to combine SQLX and Rusqlite with the same internal SqLite connection in the most "transparent" and "safe" way. What would be the best path for that? I would be happy to provide some PRs to m…
-
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…
-
You need to disable lto at PKGBUILD to compile properly the program, if not an error will occur. Please add '!lto' into options array
-
SQLite is stored in a file, not with a service. Makes things simpler. Look at https://github.com/jgallagher/rusqlite
-
I wrote at https://github.com/zcash/librustzcash/pull/1402#discussion_r1651118779_ :
----
Aside: I don't understand why we're creating a new `WalletDb` wrapper when we could instead pass in `wdb: …
daira updated
4 months ago