On Tue, Feb 14, 2012 at 7:10 PM, Pete <[email protected]> wrote:
> the framework. Any help on how to make these user written functions > available to the sqlite3 library in the framework would be much > appreciated. > If your framework provides a function which returns the raw sqlite3 handle then you can use http://www.sqlite.org/capi3ref.html#sqlite3_create_function on that handle to register the functions (do this right after opening the db if at all possible). If it does not provide such a handle then you're out of luck :/. -- ----- stephan beal http://wanderinghorse.net/home/stephan/ http://gplus.to/sgbeal _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

