Re: [sqlite] sqlite3_create_function function name when called?

2007-06-12 Thread Nuno Lucas
On 6/12/07, Omar Eljumaily <[EMAIL PROTECTED]> wrote: 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

Re: [sqlite] sqlite3_create_function function name when called?

2007-06-12 Thread Joe Wilson
--- Omar Eljumaily <[EMAIL PROTECTED]> wrote: > Is it possible to get the name of the function that the callback was > called because of? If you specified a userData argument in sqlite3_create_function() you can retrieve it in the functon itself with void

[sqlite] sqlite3_create_function function name when called?

2007-06-12 Thread Omar Eljumaily
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