如何使用ORMLite原始查询获取正确的布尔字段值?

时间:2016-07-13 21:27:36

标签: java ormlite

我在Java中使用ORMLite和H2数据库,并且我有一个带有布尔字段的类。当我使用原始查询和DAO的默认原始行映射器从数据库中获取此类的对象时,返回的对象中的布尔字段的值始终为false。 (这些值在数据库中存储为类型TINYINT。)

以下是一个例子:

public class BooleanPersistenceWithRawQueries {

    @DatabaseTable
    public static class George {
        @DatabaseField(generatedId = true) public Integer id;
        @DatabaseField public boolean curious;
    }

    public static void main(String[] args) throws Exception {
        ConnectionSource connectionSource = new JdbcConnectionSource("jdbc:h2:mem:");
        Dao<George, ?> dao = DaoManager.createDao(connectionSource, George.class);
        TableUtils.createTable(connectionSource, George.class);
        George g = new George();
        g.curious = true;
        dao.create(g);
        George h = dao.queryRaw("SELECT * FROM George", dao.getRawRowMapper()).getFirstResult();
        System.out.println("curious = " + h.curious + " should be " + g.curious);
    }
}

输出

curious = false should be true

我知道我可以继承RawRowMapperImpl来覆盖此行为,但是有一种内置的方法来配置对象映射(例如@DatabaseField注释设置),以便TINYINT 1的值被解析为true

2 个答案:

答案 0 :(得分:0)

这是一些老问题,但可能对某些人有所帮助。 在符号参数中使用数据类型

  @DatabaseField(dataType = DataType.BOOLEAN)

答案 1 :(得分:0)

我也有同样的问题,感谢卡米拉(Kamila)解决了该问题,但在这种情况下他的回答不正确。 您必须写:

@DatabaseField(dataType=DataType.BOOLEAN_INTEGER)