Documentation for this section has not yet been entered.
Type Reason Android.Database.Sqlite.SQLiteException if the database cannot be opened
Create and/or open a database. This will be the same object returned by SQLiteOpenHelper.WritableDatabase unless some problem, such as a full disk, requires the database to be opened read-only. In that case, a read-only database object will be returned. If the problem is fixed, a future call to SQLiteOpenHelper.WritableDatabase may succeed, in which case the read-only database object will be closed and the read/write object will be returned in the future.
Like SQLiteOpenHelper.WritableDatabase, this method may take a long time to return, so you should not call it from the application main thread, including from Android.Content.ContentProvider.OnCreate.