rustsqlite icon indicating copy to clipboard operation
rustsqlite copied to clipboard

SQLite3 Bindings for Rust.

Results 6 rustsqlite issues
Sort by recently updated
recently updated
newest added

A `RowMap` is defined as a `HashMap`. I am relatively new to Rust, and maybe that is why, taking values out of a `RowMap` is annoying: ``` let text =...

rustsqlite doesn't expose a way to query the database for the error message for the failure of creating the database since the binding closes the db handle, so `Database::get_errmsg` cannot...

Hi, Any chance of some up-to-date examples, or can you point me to some up-to-date examples? The main thing currently that I need to do is a SELECT with NEXT...

The function `sqlite3_errmsg` returns the error message from "the most recent call". If this is going to be exposed then every single function calling a `sqlite3_*` function needs to take...

The idea is the client declares a strict with deriving Encodeable; then query results come back as an iterator over that type. Likewise, bind variables for a statement can be...

As per rust-lang/rfcs#109, rustsqlite now produces `libsqlite3.rlib` which shares a same base name with SQLite (`libsqlite3.a`) and causes a name conflict when linked by other crates. It can be resolved...