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

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

just do:

sudo apt-get install php5-sqlite

Next time, you can find it via:

apt-cache search php | grep sqlite
link|improve this answer
Thanks! Good to know how to search the package list via console. Didn't have cloue how to search for packets until now. – wowpatrick Aug 9 '11 at 15:42
@wowpatrick: you welcome. – Michał Šrajer Aug 10 '11 at 6:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.