pub unsafe fn sqlite3_value_dup(
sqliteValue: *const sqlite3_value,
) -> *mut sqlite3_value
Expand description
Makes a copy of the sqlite3_value
object sqliteValue
and returns a
pointer to that copy. The sqlite3_value
returned is a protected
sqlite3_value
object even if the input is not. If `sqliteValue is a
pointer value, then the result is a NULL value.