How to integrate sqlite extensions in XAMPP?
There's an extension at http://www.sqlite.org/contrib?orderby=date , extension-functions.c, which bundles the SQRT command into sqlite.
How can I integrate this and use it in my Windows-XAMPP environment?
For SQL queries I use Firefox-Extension SQLiteManager and PHP scripts.
I created a fiddle with an example of my database.
+3
Michael meier
source
to share
1 answer
To get the extension you will need to compile it yourself or google it for a precompiled DLL that is XAMPP compatible and has the extensions you use, then put that in your PHP modules folder on XAMPP.
+1
Someguy123
source
to share