我正在测试中的onUpgrade
方法ContactsProvider
。
当我ContactsProvider
从设置->应用程序->联系人存储->清理数据中清理数据,然后contacts
再次启动。user_version
变量在清理之前仍然保持值。
例如:原来user_version
是 354,我把它加一到PRAGMA user_version=355
. 然后清理数据。启动联系人。user_version
还是355 。
我正在测试中的onUpgrade
方法ContactsProvider
。
当我ContactsProvider
从设置->应用程序->联系人存储->清理数据中清理数据,然后contacts
再次启动。user_version
变量在清理之前仍然保持值。
例如:原来user_version
是 354,我把它加一到PRAGMA user_version=355
. 然后清理数据。启动联系人。user_version
还是355 。
Refer to Doc of SQLite,
The PRAGMA statement is an SQL extension specific to SQLite and used to modify the operation of the SQLite library or to query the SQLite library for internal (non-table) data.