Crate toasty_driver_sqlite

Crate toasty_driver_sqlite 

Source
Expand description

Toasty driver for SQLite using rusqlite.

Supports both file-backed and in-memory databases.

§Examples

use toasty_driver_sqlite::Sqlite;

// In-memory database
let driver = Sqlite::in_memory();

// File-backed database
let driver = Sqlite::open("path/to/db.sqlite3");

Structs§

Connection
An open connection to a SQLite database.

Enums§

Sqlite
A SQLite [Driver] that opens connections to a file or in-memory database.