SQLite storage backend for obd2-core.
Implements VehicleStore and SessionStore traits using rusqlite.
Example
use SqliteStore;
use Path;
let store = open.unwrap;
SQLite storage backend for obd2-core.
Implements VehicleStore and SessionStore traits using rusqlite.
use obd2_store_sqlite::SqliteStore;
use std::path::Path;
let store = SqliteStore::open(Path::new("obd2.db")).unwrap();