mirror of
https://github.com/uqbar-dao/nectar.git
synced 2024-12-20 23:21:36 +03:00
sqlite: fix faulty db_path
This commit is contained in:
parent
8a5ac51e7b
commit
3259f279ea
@ -83,10 +83,14 @@ impl SqliteState {
|
|||||||
|
|
||||||
fs::create_dir_all(&db_path).await?;
|
fs::create_dir_all(&db_path).await?;
|
||||||
|
|
||||||
let db_file_path = format!("{}.db", db);
|
let db_file_path = db_path.join(format!("{}.db", db));
|
||||||
|
|
||||||
let db_conn = Connection::open(db_file_path)?;
|
let db_conn = Connection::open(db_file_path)?;
|
||||||
let _ = db_conn.execute("PRAGMA journal_mode=WAL", []);
|
let _: String = db_conn.query_row(
|
||||||
|
"PRAGMA journal_mode=WAL",
|
||||||
|
[],
|
||||||
|
|row| row.get(0)
|
||||||
|
)?;
|
||||||
|
|
||||||
self.open_dbs.insert(key, Mutex::new(db_conn));
|
self.open_dbs.insert(key, Mutex::new(db_conn));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user