Ok, I'm confused. I'm trying to get phpdock working with sqlite 3, and hitting the above error. The code I've got is:
php.ini:
extension=php_pdo.dll
extension=php_sqlite.dll
;extension=php_pdo_sqlite.dll
PHP script
// Open the DB
try{
$dbHandle = new PDO('sqlite:'.$_SERVER['DOCUMENT_ROOT']."downloadmanager.db3");
} catch(PDOException $exception ) {
die($exception->getMessage());
}
|
Any ideas how to get round this? I've read so many pages about different versions of sqlite, and php, pdo, etc, my brain's given up.
Andy