gwenn

Results 447 comments of gwenn

Sorry but without a complete example to reproduce your error, we cannot help you. `rusqlite` is available on [playground](https://play.rust-lang.org). Could you please provide a complete minimalist example to reproduce your...

https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=9c6eefd6905efca4ae1876acbc6a1e29 ``` error[[E0308]](https://doc.rust-lang.org/stable/error-index.html#E0308): mismatched types --> src/main.rs:5:5 | 3 | fn make_harness() -> Connection { | ---------- expected `Connection` because of return type 4 | let con = Connection::open_in_memory().unwrap(); 5...

@thomcc I agree with you. Maybe we can edit release notes by checking Travis CI history and adding the stable version used ?

The `bundled_bindings` is a feature of `libsqlite3-sys` and currently there is no README specific to this crate. Only a README for `rusqlite` and a symlink.

There is no `NamedParamsFromIter` for [named parameters](https://docs.rs/rusqlite/latest/rusqlite/trait.Params.html#named-parameters). As a workaround, you can use [raw_bind_parameter](https://docs.rs/rusqlite/latest/rusqlite/struct.Statement.html#method.raw_bind_parameter)

I am afraid that comment https://github.com/rusqlite/rusqlite/pull/1325#issuecomment-1548592607 also applies here. (`&[u8] or &str X`)

Neither https://github.com/sfackler/rust-postgres nor https://github.com/launchbadge/sqlx seem to support `Path` / `PathBuf` so ...

Just for your information, `select` seems to be mandatory on MacOS: See #802

First, you should read [this](http://stackoverflow.com/a/36211711/5549604): > With Go 1.6, the Go developers decided to be very strict about this, and they no longer allow C code to retain a Go...