如何将PRAGMA integrity_check用于附加数据库?

时间:2016-10-20 11:29:08

标签: android sqlite

我在我的应用程序中使用了SQLITE数据库,但我有时需要临时附加另一个数据库才能交换数据。

我首先使用:

ATTACH DATABASE db/path AS db

然后我使用以下内容检查完整性:

PRAGMA integrity_check

问题是它似乎只检查主数据库,而不是我临时附加的数据库。

有没有办法检查所有数据库?

1 个答案:

答案 0 :(得分:1)

As documented in the documentation, you can put the database name before the pragma name:

PRAGMA db.integrity_check;