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