Quote:
Originally Posted by mitch13
Loaded Calibre library into DB Browser for SQLite without a problem.
How can I tell if there is a problem through this proram? Would it not load if it was corrupted?
If it OK in SQLite what now?
|
You probably should run an integrity check. In DB Browser, go to the "Execute SQL" tab and enter:
Code:
PRAGMA integrity_check
The result will be "ok" if there are no problems. If there are problems, there will be details of the problems.