musq 0.0.3

musq is a SQLite3 driver for Rust focusing on performance, correctness, and flexibility.
Documentation
1
2
3
4
5
6
7
8
use musq::*;

fn main() -> musq::Result<()> {
    let ids = vec![1,2];
    let cols = ["id", "name"];
    let _ = sql!("SELECT {idents:cols} FROM t WHERE id IN ({values:ids})")?;
    Ok(())
}