尝试删除android的sqlite数据库中的所有记录但没有效果
我正在使用 rawQuery 删除表中的所有记录:
final SQLiteDatabase dbWritable = this.getWritableDatabase();
dbWritable.rawQuery("DELETE FROM "+T5_NAME, null);
但此代码没有效果。执行后所有记录仍然存在。
为什么会这样?
PS 现在我使用 dbWritable.delete(T5_NAME, null, null) - 有效。但为什么 rawQuery 没有呢?
I'm using rawQuery to delete all records from table:
final SQLiteDatabase dbWritable = this.getWritableDatabase();
dbWritable.rawQuery("DELETE FROM "+T5_NAME, null);
but this code has no effect. All of records are still there after execution.
Why is that?
PS now i use dbWritable.delete(T5_NAME, null, null) - that works. But why rawQuery doesn't?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
rawQuery 在结果集上返回 光标 。因此,它需要与返回结果集的查询一起运行。和 delete 您正在使用的方法使用一些预定义值来构造删除语句。
rawQuery returns Cursor over the result set. So it's ment to be run with queries which return result set. And delete method that you are using uses some predefined values for constructing delete statements.
也许你需要 execSQL。它适用于 SELECT 语句以外的语句。
Maybe you need execSQL. It is meant for statements other than SELECT statements.