I usually use text or json files.
To be included in the APK your database
needs to be in your app folder.
app.OpenDatabase allows you to specify
a folder and name.
app.MakeFolder( "/sdcard/db");
db = app.OpenDatabase( "/sdcard/db/MultiSearch" );
Not sure if it opens db for update,
In which case you'd need to copy it out
(Perhaps app.ExtractAssets).
Regards, ah