标签: android sqlite
我有两个Sqlite数据库。这两个是附加的。现在我想用数据库B中的tableA更新数据库A记录中的tableA。 我在Android中尝试了以下类似的方法。
sqliteDb.update(tableA,contentValues,whereclause,null)
contentValues-数据库B中tableA的字段和值。
contentValues
whereclause-Int_Key = :Int_Key'
whereclause
Int_Key = :Int_Key'
问题在于它不会影响任何行且不会更新。但是有符合以上条件的记录。请帮忙。