Expand description
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();Structs§
- Sqlite
Store - SQLite storage backend.