您好我想查询db表中所有在ISO8601中都有timeStamp
的行/对象,大于日期baseDate
(ISO8601),我使用Ormlite作为框架,请建议使用Ormlite的解决方案。
以下是我的模型的一个简单示例。
@DatabaseTable(name="testTable")
class testTable
{
@DatabaseField(id = true)
int id
@DatabaseField
String timeStamp
}
由于
答案 0 :(得分:0)
尝试使用:
private TimeStampType timeStamp;
作为数据类型和“QueryBuilder”带有where子句。