Ubuntu – How to install the SQLite PDO extension on Ubuntu

apache-http-serverPHPsqliteUbuntu

The default Ubuntu PHP package does not include the PDO SQLite extension. How can I install the SQLite PDO extension? Is there a package that one can easily install via apt-get?

Best Answer

just do:

sudo apt-get install php5-sqlite

Next time, you can find it via:

apt-cache search php | grep sqlite
Related Question