R rclatorre Member Licensed User Longtime User Dec 28, 2012 #1 I need access to the same local database from two APK. This code is the second APK B4X: Sub ConectaDB SQL1.Initialize(File.DirDefaultExternal,"midb.db",False) SQL1.ExecNonQuery("UPDATE configuracion SET test_mode='Y'") End Sub Thanks
I need access to the same local database from two APK. This code is the second APK B4X: Sub ConectaDB SQL1.Initialize(File.DirDefaultExternal,"midb.db",False) SQL1.ExecNonQuery("UPDATE configuracion SET test_mode='Y'") End Sub Thanks
Erel B4X founder Staff member Licensed User Longtime User Dec 28, 2012 #2 The value of File.DirDefaultExternal is: B4X: File.Combine(File.DirRootExternal, "/Android/data/<package name>/files/") You can access this path from other applications. Upvote 0
The value of File.DirDefaultExternal is: B4X: File.Combine(File.DirRootExternal, "/Android/data/<package name>/files/") You can access this path from other applications.
R rclatorre Member Licensed User Longtime User Dec 29, 2012 #3 Thanks Erel, problem solved Roberto Upvote 0