UNPKG

ionic-database-builder

Version:

Extended library from database-builder to assist in creating and maintaining SQL commands. Allowing integrate execute commands with SQLite ('@ionic-native/sqlite'), Web Sql, etc. Through the interface injection 'DatabaseCreatorContract' returning an imple

23 lines (22 loc) 607 B
export interface DatabaseConfig { /** * Name of the database. Example: 'my.db' */ name: string; /** * Location of the database. Example: 'default' */ location?: string; /** * iOS Database Location. Example: 'Library' */ iosDatabaseLocation?: string; /** * support opening pre-filled databases with https://github.com/litehelpers/cordova-sqlite-ext */ createFromLocation?: number; /** * support encrypted databases with https://github.com/litehelpers/Cordova-sqlcipher-adapter */ key?: string; }