Interface WriteDbOptions

Options to readDb and readRawDb.

interface WriteDbOptions {
    cardNo?: number;
    overwrite?: boolean;
}

Properties

Properties

cardNo?: number

Card number on the Palm OS device (typically 0).

overwrite?: boolean

Whether to overwrite an existing database.

If false (the default), an error will be thrown if a database with the same name already exists on the device.

If true, an existing database on the device with the same name will be overwritten.