I was doing a android project in eclips using sqllight. Can anybody tell me Where actually the data in sqlight stored internally ? .
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.
You can find the path to a database on the device by using Context.getDatabasePath(String name)
In general it will be found at
/data/data/<your_package_name>/databasesbut don’t rely on that absolute path as it may change in future Android versions.