pub fn result_error(context: *mut sqlite3_context, text: &str) -> Result<()>
Expand description
Calls sqlite3_result_error
to represent that a function returns an error with the given value.
Note: You can typically rely on crate::Result
to do this for you.