sqlite3_get_auxdata

inline fun <Data : Any> sqlite3_get_auxdata(context: sqlite3_context, index: Int): Data?(source)

Return the auxiliary data pointer, if any, for the index-th argument to the user-function defined by context.

The left-most argument is 0.

Undocumented behavior: If index is negative then access a cache of auxiliary data pointers that is available to all functions within a single prepared statement. The index values must match.

sqlite3_get_auxdata()