Ken wrote:
Is there a way for SQLITE to automatically load user defined functions at database instantiation or upon database connection?
Can it test for a .so/.dll and perform a call to load user functions? If the .dll does not exist maybe issue a warning?
Just a thought as a way to allow users to create their own presentation
library to implement things like math functions/ presentation functions etc
without having to make and maintain code changes to the core software.
Build your own wrapper for the sqlite3_open API function. You can have
some form of library of user defined functions which you bind just after
you have made a DB connection.
-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------