Hi,
void myFunc( sqlite3_context* ctx, int nArgs, sqlite3_value** values )
{
//....
const char* expr = (const char*)sqlite3_value_text( values[ 0 ] ):
//....
}
select
myFunc( col1 + col2 )
;
The expression "col1 + col2" is evaluated when i call sqlite3_value_text or
before the call of myFunc ?
Thank.
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

