I have a connection problem with sqlite_popen () with php
2 answers
I would assume that you have a database created with sqlite3 while the method call is expecting sqlite (version 2). Try the sqlite3 PHP API; here's the docs .
Please note that sqlite3 support is compiled to PHP 5.3.0. Then something like
$db = sqlite3_open(":memory:");
should be enough.
0
a source to share