quick Check
Performs a faster, less thorough integrity check of the database or a specific table.
This pragma scans the database to find some, but not all, forms of corruption. It is designed to run much faster than the full integrityCheck but is less likely to find subtle errors. It primarily looks for out-of-order records and missing pages.
If the check is successful, the returned cursor will contain a single row with the text "ok".
If corruption is found, the cursor will contain rows describing the errors detected.
This is useful for a quick verification when a full integrity_check is too slow. A convenience function, isQuickCheckOK, is provided to simplify checking for the "ok" result.
Return
A KQLiteCursor containing either "ok" on success or a list of error messages on failure.
Author
MOHAMMAD AZIM ANSARI
Parameters
The specific table to check. If null (the default), the entire database is checked.