Where the data in sqlight stored internally
I was doing a android project in eclips using sqllight. Can anybody tell me Where actually开发者_JS百科 the data in sqlight stored internally ? .
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>/databases
but don't rely on that absolute path as it may change in future Android versions.
精彩评论