We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f54454 commit 3780e82Copy full SHA for 3780e82
1 file changed
crates/core/src/errors.rs
@@ -14,6 +14,8 @@ pub enum Error {
14
Misuse(String),
15
#[error("Invalid column name: {0}")]
16
InvalidColumnName(String),
17
+ #[error("libSQL error {0}")]
18
+ LibError(std::ffi::c_int),
19
}
20
21
pub(crate) fn error_from_handle(raw: *mut libsql_sys::ffi::sqlite3) -> String {
0 commit comments