I want to store a data base in my android emulator. I have a datasheet .In asp we can view the database data by clicking show table data . And we can also edit that data. But i want to do that in my android emulator.Thanks in advance.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s no native GUI available in emulator for manipulating SQLite database. However, the easiest and best way is to access your database in emulator via ADB. For example:
Open command prompt and type the following (make sure you have defined Android SDK’s platform-tools in your path)
and you should see
#symbol, then:For more details, read this.