====== GetDatabaseFolder ====== **app.GetDatabaseFolder()** returns the path to the default folder where **app.OpenDatabase()** creates a database file. This will save the file in the default folderdb=app.OpenDatabase("MyDatabase") If you wish to save the database in a different folder, use an absolute pathapp.MakeFolder("/sdcard/mydatabases"); db=app.OpenDatabase("/sdcard/mydatabases/MyDatabase")