Interface IDatabaseOptions

interface IDatabaseOptions {
    create: boolean;
    readOnly: boolean;
}

Properties

Properties

create: boolean

Whether the database needs to be created if it doesn't exist. Defaults to true.

readOnly: boolean

Whether the database should be open in read-only mode or not. Defaults to false.