0

I am implementing extra features into an app, and I have been asked to add some more data into the database. My question is how do I view the database (SQLLite Database) within Eclipse or outside Eclipse and how would I add data into the database?

Thank You (This is my first android project)

usercoder
  • 51
  • 4
  • Do you have the database file? – Simas Jan 23 '15 at 19:27
  • They have provided me with the .sqlite and 2 .csv files – usercoder Jan 23 '15 at 19:32
  • This seems a bit broad... you've been asked to "add data to a database" and you're asking us how to "add data to a database." That would mean we're doing your job? Have you tried google *at all*? – 323go Jan 23 '15 at 19:50

1 Answers1

1

Actually there are lots of tools over the net where you can add and view data, but here are a few of them.

I usualy use a tool called SQLiteStudio, pretty useful and allows to view and query database in a simple way.

For Eclipse there is a plugin called Android SQLite Browser, also I used an SQLite Manager plugin for Eclipse a long time ago. If you are using Intellij IDEA, I can suggest using of their database tools.

Another popular one's are the SQLiteManager and DB Browser for SQLite.

yyunikov
  • 5,719
  • 2
  • 43
  • 78