We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce25cac commit c2e937fCopy full SHA for c2e937f
1 file changed
libsql/src/local/connection.rs
@@ -52,7 +52,9 @@ impl Connection {
52
match err {
53
ffi::SQLITE_OK => {}
54
_ => {
55
- return Err(Error::ConnectionFailed(db_path));
+ return Err(Error::ConnectionFailed(format!(
56
+ "Unable to open connection to local database {db_path}: {err}",
57
+ )));
58
}
59
60
0 commit comments