I was surprised to find PDO sqlite support wasn’t included by default with PHP 5 on my Ubuntu (10.04) virtual machine. You can check which drivers are available with this small snippet of code (assuming you run this from the command line):
foreach (PDO::getAvailableDrivers() as $driver) { echo $driver . PHP_EOL; }