SQLiteRecordManagerOptions: {
    tableName: string;
    connectionString?: string;
    localPath?: string;
}

Options for configuring the SQLiteRecordManager class.

Type declaration

  • tableName: string

    The name of the table in the SQLite database.

  • Optional connectionString?: string

    The connection string of the SQLite database. One of either localPath or connectionString is required.

  • Optional localPath?: string

    The file path of the SQLite database. One of either localPath or connectionString is required.

Generated using TypeDoc