void* sqlite3_get_auxdata( sqlite3_context* ctx, int pidx );
ctx
An SQL function context, provided by the SQLite library.
pidx
A function parameter index. The first
parameter has an index of zero (0
).
A user-defined data pointer set with sqlite3_set_auxdata()
.