0

Can any one help me out to update an entire object with a where condition in ormlite. I know its possible to update a column using where condition but i need to update the full row with one column value in where condition

4

1 回答 1

2

createOrUpdate方法也是如此。


从文档中说

创建或更新(T 数据)

如果项目不存在,这是在数据库中创建项目的便捷方法。id 是从 data 参数中提取的,并在数据库上进行查询。如果数据库中存在具有相同 id 的行,则数据库中的所有列都将从 data 参数中的字段更新。如果 id 为 null(或 0 或其他默认值)或数据库中不存在,则将在数据库中创建对象。这也意味着您的数据项必须定义一个 id 字段。

于 2013-09-06T12:25:32.333 回答