pub fn value_text<'a>(value: &*mut sqlite3_value) -> Result<&'a str, Utf8Error>
Expand description

Returns the sqlite3_value_text result from the given sqlite3_value, as a str. If the number of bytes of the underlying value is 0, then an empty string is returned. A UTF8 Error is returned if there are problems encoding the string.