0

Possible Duplicate:
Android - viewing SQLite databases on device?

I'm wondering if there is an application out there that would let me view the sqlite database, my application created, in a visual context, other then using sqlite3 command from adb?

I'm thinking something along the line of sql server management studio, mysql workbench, etc...

It would have to have the following options: - List tables - Query tables - View tables (data + schema) - Create tables - Drop tables - Alter table schemas

Community
  • 1
  • 1
Bram Vandenbussche
  • 1,401
  • 11
  • 22
  • 1
    Here is your complete answer : http://stackoverflow.com/questions/2149438/tool-to-see-android-database-tables-and-data/4646473#4646473 – Pankaj Kumar Aug 29 '11 at 06:20

1 Answers1

1

It's certainly not management studio, but SQLite Editor allows you to view and edit databases in place. You need root to use it, of course.

Nikolay Elenkov
  • 52,576
  • 10
  • 84
  • 84