Function sqlite3_get_auxdata

Source
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 nth argument value to the application-defined function. n is zero for the left-most function argument.

See https://www.sqlite.org/c3ref/get_auxdata.html