Skip to main content

sqlite3_column_blob

Function sqlite3_column_blob 

Source
#[unsafe(no_mangle)]
pub unsafe extern "C" fn sqlite3_column_blob( stmt: *mut Sqlite3Stmt, i_col: c_int, ) -> *const c_void
Expand description

Get a blob pointer from column i_col.

The returned pointer is valid until the next sqlite3_step, sqlite3_reset, or sqlite3_finalize on this statement.

ยงSafety

stmt must be a valid handle with an active row.