Android Question where's my data????

paul allen

Member
Licensed User
Longtime User
where's me data on my PC when save to 'File.DirInternal'. i'm using sqlite data base and would like to see data save there.
i've looked all through my pc and can not find the .db files.
thanks for your help.....
 

paul allen

Member
Licensed User
Longtime User
thanks for your reply, i'm trying to find the data on the PC when working to build the program. do you know where on the PC and the directory name?
i can un-hide the directory if neededl. Thanks.
 
Upvote 0

Jeffrey Cameron

Well-Known Member
Licensed User
Longtime User
You're in the Android questions forum, so we'll assume you're running the code on an actual Android device or emulator which means the file is only on that device, not on your PC. If you want to see what folder the program is using, add a log statement to your creation code:
B4X:
Log("Path is: " & File.Dirinternal)
 
Upvote 0
Top