Hi I’m checking if there is a fast way of checking if the sqlite database has been set up properly in android ?
Anyway to printf it ? or anyway to quickly see it ?
Thank you !
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.
Firstly, check that you can find the Database in the File Explorer:
You can then export that using the “Pull a file from the device” option in the top right. Finally, you can use SQLiteBrowser ( http://sourceforge.net/projects/sqlitebrowser/ ) or similar to check that the contents match your expectations.
Additionally, I am sure you have tested with running
INSERTand whatnot commands on it? I didn’t do much testing on my DB except verifying that everything worked smoothly when I added and gathered entries from it (as that is all it does, being a rather simple one).