views:

1543

answers:

4

Is there a good PHP client for SQLite 3 databases?

I'm looking for something like phpMyAdmin of SQLBuddy that allows me to manage SQLite 3 databases, preferably one that uses the PDO (pdo_sqlite) driver.

+1  A: 

There is a nice Firefox plugin. Then again, that's not a PHP client.

Franz
And is only compatible with SQLite 2.
Alix Axel
+1  A: 

Here are two of them, they are both called phpSQLiteAdmin:

  1. One by Yves Glodt
  2. One by Richard Heyes
sheats
I know both of them, the first relies on the unmantained SQLite PECL extension and the second one is only compatible with SQLite 2 (last release date is 2004).
Alix Axel
+4  A: 

try this:

http://www.sqlitemanager.org/

Eineki
I haven't tried this one yet, does it support SQLite 3 databases?
Alix Axel
Yes, the 1.2 version support sqlite version 2 and 3.
Eineki
A: 

Here is exactly what you are looking for:

http://www.danedesigns.com/SQLite3Admin/

Dane Iracleous