Curious how many of you have the PDO library for SQLite 3 preinstalled with your host.
To find out in php you can save a file with the following in it
If the config string has --with-pdo-sqlite in it, or if you scroll down til you see something like this (with version 3 specified).
Then you have it.
To find out in php you can save a file with the following in it
Code:
<?php
phpinfo();
?>
If the config string has --with-pdo-sqlite in it, or if you scroll down til you see something like this (with version 3 specified).
Then you have it.