pub unsafe fn sqlite3_get_auxdata(
ctx: *mut sqlite3_context,
n: c_int,
) -> *mut c_void
Expand description
Returns a pointer to the metadata associated by the
sqlite3_set_auxdata(ctx, n , pAux, xDelete)
function with the n
th
argument value to the application-defined function. n
is zero for the
left-most function argument.