我在我的应用程序中使用了SQLITE数据库,但我有时需要临时附加另一个数据库才能交换数据。
我首先使用:
ATTACH DATABASE db/path AS db
然后我使用以下内容检查完整性:
PRAGMA integrity_check
问题是它似乎只检查主数据库,而不是我临时附加的数据库。
有没有办法检查所有数据库?
答案 0 :(得分:1)
As documented in the documentation, you can put the database name before the pragma name:
PRAGMA db.integrity_check;