Abstract database behind generic interface and implement alternative drivers #322

Merged
lx merged 64 commits from db-abstraction into main 2022-06-08 08:01:56 +00:00
Showing only changes of commit cc4f1aca97 - Show all commits

View file

@ -72,7 +72,7 @@ impl SqliteDbInner {
impl IDb for SqliteDb {
fn engine(&self) -> String {
"Sqlite3 (using rusqlite crate)".into()
format!("sqlite3 v{} (using rusqlite crate)", rusqlite::version())
}
fn open_tree(&self, name: &str) -> Result<usize> {