Returns a dictionary of the available PRAGMA statements in this SQLite database, where each key-value pair is a PRAGMA with its associated value.

PRAGMA statements not available in the provided SQLite database will not show up in the dictionary.

  • Parameters

    • db: Database

    Returns {
        [pragma: string]: any;
    }

    • [pragma: string]: any