Reputation: 31
Can somebody help me to see the values that are stored in a database non-programatically? Using file explorer and command prompt?
Upvotes: 1
Views: 975
Reputation: 241
Is it possible to get the Database from the DDMS in eclipse?
I was searching in the data folder for the application and I didn't find it there.
Upvotes: 0
Reputation: 3127
download sqlite browser and browse your data and you can see its tables and its data use this blog to learn more.
Upvotes: 0
Reputation: 928
Good luck!!
Upvotes: 1
Reputation: 6142
You can use the command line tool sqlite3(.exe) of the SQLite library.
Source: http://www.sqlite.org/sqlite.html
Upvotes: 0