我在已经定义了索引的数据库上尝试了这两个查询:
myDB.rawQuery("drop index my_index", null);
myDB.rawQuery("create index my_index on mytable(row_table)", null);
我得到这个错误:
(1) index my_index already exists
然而,当我使用 sqlite3 在我的计算机上的 shell 中执行这些非常相同的查询时,它可以完美运行!
Android 上的这些查询有什么问题?