Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

5 Answers

up vote 14 down vote accepted

try this:

http://www.sqlitemanager.org/

share|improve this answer
I haven't tried this one yet, does it support SQLite 3 databases? – Alix Axel Nov 17 '09 at 21:35
Yes, the 1.2 version support sqlite version 2 and 3. – Eineki Nov 17 '09 at 22:59
sqlite manager is (or was) quite buggy to be honest. I experienced trying to rename a table column and... lost the WHOLE TABLE DATA. Maybe they fixed it, who knows, I don't use it anymore. – hexa Jun 19 '11 at 20:15
3  
@hexa When you encountered the bug? Maybe a date or a time reference will render your comment more useful – Eineki Jun 21 '11 at 3:03

Here is exactly what you are looking for: SQLite

share|improve this answer
This is my fave, of the ones I saw so far. – Volomike Apr 20 '11 at 5:22
1  
easy to install , one file – francois May 20 '12 at 11:46
The link is broken. – Codemonkey Mar 25 at 12:29
Do you mean code.google.com/p/phpliteadmin ? – Brutus 16 hours ago

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

share|improve this answer
And is only compatible with SQLite 2. – Alix Axel Nov 17 '09 at 21:19
Does anyone know if Alix's comment is still true? Looking at the plugin it says "Manage any SQLite database on your computer" which implies to me 2 or 3, though it's not clear. In any case, looks like a very nice interface. – dimo414 Jan 23 '11 at 7:35
Just tried it and it works with sqlite3 DBs. It also answers the original question in that it does most of what phpMyAdmin does. – Darren Cook Sep 12 '11 at 0:19

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

  1. One by Yves Glodt
  2. One by Richard Heyes
share|improve this answer
1  
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 Nov 17 '09 at 21:21

Check out the new Firefox Add-on called SQLite Manager

share|improve this answer
I assume the two downvotes are because it is not a "PHP client"? I think the original question was misleading: he wants something like phpMyAdmin for sqlite, and that is what this firefox add-on is. (Anyway, for anyone else confused, this is the same URL as the other firefox plugin answer above.) – Darren Cook Sep 12 '11 at 0:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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