john soprych wrote: > Is there a good way to create functions in sqlite where you can insure that > your function callback will be called in order?
No.
Your best bet is writing the query in such a way that the function is
applied to an already ordered sequence:
SELECT myfunc(x) FROM (SELECT x FROM t ORDER BY x);
Regards,
Clemens
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

