I am trying to install sqlite3 for php in ubuntu.

I install apt-get php5-sqlite3 and edited php.ini to include sqlite3 extension.

When I run phpinfo(); I get

SQLITE3 SQLite3 support enabled
sqlite3 library version 3.4.2

as shown above, sqlite3 is enabled. However, I get "Class SQLite3 not found" when I use

 new SQLite3("database");
link|improve this question

feedback

4 Answers

up vote 10 down vote accepted
$ sudo apt-get install php5-cli php5-dev make
$ sudo apt-get install libsqlite3-0 libsqlite3-dev
$ sudo apt-get install php5-sqlite3
$ sudo apt-get remove php5-sqlite3
$ cd ~
$ wget http://pecl.php.net/get/sqlite3-0.6.tgz
$ tar -zxf sqlite3-0.6.tgz
$ cd sqlite3-0.6/
$ sudo phpize
$ sudo ./configure
$ sudo make
$ sudo make install
$ sudo apache2ctl restart

Ripped from the ubuntu form.

link|improve this answer
1  
The 2nd to last command should be sudo checkinstall (after running sudo apt-get install checkinstall. Why use an OS with a package manager if you're not going to use it? – Brendan Long Mar 27 '10 at 6:00
5  
this is now out dated advice. e.g. forum.linode.com/viewtopic.php?p=39974 – momeara Jan 21 at 20:31
feedback

Try:

apt-get install php5-sqlite

in addition to:

apt-get install php5-sqlite3

That worked for me.

link|improve this answer
2  
the php5-sqlite3 package doesn't exist anymore. – momeara Jan 21 at 20:31
feedback

The accepted answer is not complete without the remainder of instructions (paraphrased below) from the forum thread linked to:

cd /etc/php5/conf.d

cat > sqlite3.ini
# configuration for php SQLite3 module
extension=sqlite3.so
^D

sudo /etc/init.d/apache2 restart
link|improve this answer
feedback

The SQLite3 PDO driver is named SQLite, not SQLite3, so you can do:

new SQLite("database");

For a SQLite2 database:

new SQLite2("database");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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