John, 

Kind of defeats the point of "automatic". 
 
Using a wrapper for application code is perfectly legitimate. However it does 
not address the sqlite3 command line tool.

The ability to automatically load a library of functions via a dll would be a 
really nice feature and could be used to promote user contributions for library 
development for sqlite. 

For example math function library, or string function library, even the VFS i/o 
routines could be loaded in this manner. 

Ken

John Stanton <[EMAIL PROTECTED]> wrote: 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]
-----------------------------------------------------------------------------


Reply via email to