You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The typescript definition for sqlite requires the user to use SQLiteDatabaseConfig when opening a new database, but the cordova plugin decides that this is AMBIGUOUS call because location AND iosDatabaseLocation properties must be specified.
export interface SQLiteDatabaseConfig {
/**
* Name of the database. Example: 'my.db'
*/
name: string;
/**
* Location of the database. Example: 'default'
*/
location: string;
/**
* iOS Database Location. Example: 'Library'
*/
iosDatabaseLocation: string;
}
the plugin only understands only when one or the other are present
The text was updated successfully, but these errors were encountered:
The typescript definition for sqlite requires the user to use
SQLiteDatabaseConfig
when opening a new database, but the cordova plugin decides that this is AMBIGUOUS call because location AND iosDatabaseLocation properties must be specified.the plugin only understands only when one or the other are present
The text was updated successfully, but these errors were encountered: