Use single quotes for strings

This commit is contained in:
Spxg
2025-05-19 20:53:32 +08:00
parent a5f6396497
commit 000329e97c

View File

@@ -231,7 +231,7 @@ impl SQLitePreparedStatement {
let Ok(text) = std::str::from_utf8(slice) else {
return Err(SQLitendError::Utf8Text);
};
format!("{text:?}")
format!("'{text}'")
}
SQLITE_BLOB => {
let slice = {