我想在Query中使用Limit和Order By“abc”DESC,我没有得到 溶液
BuyActivity.this
.getContentResolver()
.update(LearnBirdContactClass.LearbirdTable.SUB_CAT_URI_CONTENT_URI,
contentValuessubcat,
LearnBirdContactClass.SubCategortyTableColumns.CAT_ID
+ " = ? AND "
+ LearnBirdContactClass.SubCategortyTableColumns.SUB_CAT_ID
+ " = ?", new String[] { catId, });
如何在此
中添加限制和排序依据谢谢
答案 0 :(得分:0)
Android中的SQLite库没有启用UPDATE / DELETE LIMIT子句,所以即使内容提供者有这样一个限制的接口(它没有),它也行不通。
您别无选择,只能唯一标识要更新的行。