obd2-store-sqlite 0.2.0

SQLite storage backend for obd2-core
Documentation

SQLite storage backend for obd2-core.

Implements VehicleStore and SessionStore traits using rusqlite.

Example

use obd2_store_sqlite::SqliteStore;
use std::path::Path;

let store = SqliteStore::open(Path::new("obd2.db")).unwrap();