pub unsafe fn sqlite3_exec(
db: *mut sqlite3,
sql: *const c_char,
callback: Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: c_int, arg3: *mut *mut c_char, arg4: *mut *mut c_char) -> c_int>,
pCbArg: *mut c_void,
pzErrMsg: *mut *mut c_char,
) -> c_int
Expand description
C interface definition of sqlite
A convenience wrapper around sqlite3_prepare_v2()
, sqlite3_step()
, and
sqlite3_finalize()
, that allows an application to run multiple statements
of SQL without having to use a lot of C code.