pub unsafe fn sqlite3_bind_blob64(
stmt: *mut sqlite3_stmt,
idx: c_int,
blob: *const c_void,
n: sqlite3_uint64,
dtor: Option<unsafe extern "C" fn(arg1: *mut c_void)>,
) -> c_int
Expand description
Bind a BLOB
value to a parameter in a prepared statement.