Ergonomic bindings to SQLite for Rust
Go to file
2016-12-31 00:39:19 -05:00
benches
libsqlite3-sys Bump to version 0.7.0. 2016-05-19 20:26:18 -05:00
src FromSqlError::cause() returns other error's cause directly (possibly None). 2016-12-31 00:36:52 -05:00
tests
.gitignore
.travis.yml
appveyor.yml Use new Rust 1.9 attribute: #[deprecated]. 2016-05-26 21:16:09 +02:00
build.rs
Cargo.toml Ensure cache is flushed when closing the connection 2016-11-04 20:47:28 +01:00
Changelog.md Add Error changes to Changelog. 2016-12-31 00:39:19 -05:00
clippy.toml
CONTRIBUTORS.md
LICENSE
publish-ghp-docs.sh Update feature list in doc-publishing script 2016-05-19 20:26:18 -05:00
README.md Merge pull request #185 from gwenn/link-to-crates.io 2016-12-30 23:49:31 -05:00

Rusqlite

Travis Build Status AppVeyor Build Status Latest Version

Rusqlite is an ergonomic wrapper for using SQLite from Rust. It attempts to expose an interface similar to rust-postgres. View the full API documentation.

extern crate rusqlite;
extern crate time;

use time::Timespec;
use rusqlite::Connection;

#[derive(Debug)]
struct Person {
    id: i32,
    name: String,
    time_created: Timespec,
    data: Option<Vec<u8>>
}

fn main() {
    let conn = Connection::open_in_memory().unwrap();

    conn.execute("CREATE TABLE person (
                  id              INTEGER PRIMARY KEY,
                  name            TEXT NOT NULL,
                  time_created    TEXT NOT NULL,
                  data            BLOB
                  )", &[]).unwrap();
    let me = Person {
        id: 0,
        name: "Steven".to_string(),
        time_created: time::get_time(),
        data: None
    };
    conn.execute("INSERT INTO person (name, time_created, data)
                  VALUES (?1, ?2, ?3)",
                 &[&me.name, &me.time_created, &me.data]).unwrap();

    let mut stmt = conn.prepare("SELECT id, name, time_created, data FROM person").unwrap();
    let mut person_iter = stmt.query_map(&[], |row| {
        Person {
            id: row.get(0),
            name: row.get(1),
            time_created: row.get(2),
            data: row.get(3)
        }
    }).unwrap();

    for person in person_iter {
        println!("Found person {:?}", person.unwrap());
    }
}

Optional Features

Rusqlite provides several features that are behind Cargo features. They are:

  • load_extension allows loading dynamic library-based SQLite extensions.
  • backup allows use of SQLite's online backup API.
  • functions allows you to load Rust closures into SQLite connections for use in queries.
  • trace allows hooks into SQLite's tracing and profiling APIs.
  • blob gives std::io::{Read, Write, Seek} access to SQL BLOBs.
  • chrono implements FromSql and ToSql for various types from the chrono crate.
  • serde_json implements FromSql and ToSql for the Value type from the serde_json crate.

Author

John Gallagher, johnkgallagher@gmail.com

License

Rusqlite is available under the MIT license. See the LICENSE file for more info.