When you create a function with sqlite3_create_function, the callback function is something like:

myFunc(sqlite3_context *context, int argc, sqlite3_value **argv)
{

}

Is it possible to get the name of the function that the callback was called because of? I want to write just one callback that is used for multiple functions. The reason I want to do this is to be able to add functions at runtime.

Thanks.



-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to