On Wed, Apr 3, 2013 at 8:58 AM, Yongil Jang <[email protected]> wrote:
> Is there any way that I can recognize there arguments are generated from > dynamic binding (ex: "?") or static string? > No. Applications-defined functions are call-by-value, as in C. If you have a C function, you cannot tell if the parameters came from variables, expressions, or literals. In the same way, SQLite application defined functions have no means of tracing the original of parameter values. -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

