pub fn result_text<S: AsRef<str>>(
    context: *mut sqlite3_context,
    text: S
) -> Result<()>
Expand description

Calls sqlite3_result_text to represent that a function returns a string with the given value. Fails if the string length is larger than i32 maximum value.