I am opening Sqlite to memory.
Then I add the DB.
I am deleting the physical db file for security.
I can not use SQL later.
How can I solve this problem? I need to delete the physical file after initialization.
B4X:
SQL1.Initialize("", ":memory:", True)
Then I add the DB.
B4X:
SQL1.ExecNonQuery("attach database '"&Starter.rp.GetSafeDirDefaultExternal("")&"/data.db'"&" as data")
I am deleting the physical db file for security.
I can not use SQL later.
How can I solve this problem? I need to delete the physical file after initialization.