I inserted a record in a SQLite table. then I use the following code for the back key to exit the application:
MyDatabase.db-journal file is created. with 0B every time I insert a record, exit the application and come back. I have 3 separate applications and each has a corresponding journal file with 0B in size. Is it really supposed to be automatically deleted or is it the same as having one with 0B. I read the SQLite documentation about journal and it is as complex and twisted as the flow charts they have on their web site.
Thanks
B4X:
Answ = Msgbox2(txt," I N F O R M A T I O N","Yes","","No",LoadBitmap(File.DirAssets,"Warning-icon.png"))
If Answ = DialogResponse.POSITIVE Then
Cursor1.Close
SQL1.Close
Activity.Finish
Thanks