Am 01.04.2011 15:44, schrieb Mr. Puneet Kishor: >> See http://www.sqlite.org/contrib extension-functions.c > > Is there a guide on how to compile the above extension-functions.c > into sqlite, so it is always available without have to do load the > extension explicitly? > > Pointers appreciated.
My component wxSQLite3 (a SQLite wrapper for wxWidgets applications) includes the sources for SQLite with support for the mentioned extension functions without requiring to load the extension. All what's required is to compile a single C source file (which in turn includes all other necessary source files) with the symbol SQLITE_ENABLE_EXTFUNC defined. The source code can be downloaded from here: http://sourceforge.net/projects/wxcode/files/Components/wxSQLite3/ And here you find some additional information which might be helpful for building SQLite: http://wxforum.shadonet.com/viewtopic.php?t=27217 Regards, Ulrich _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

