java – Jooq如何基于复合键查询实体
作者:互联网
如何在Jooq中基于复合键查询实体?
例如.:
UserAttempts org.jooq.impl.DAOImpl.findById(Record2<UInteger, String> id)
id是一个复合键.如何使用Record2< UInteger,String>?
解决方法:
您可以使用DSLContext.newRecord()
构建Record2:
UserAttempts attempts =
dao.findById(ctx.newRecord(USER_ATTEMPTS.ID_COLUMN1, USER_ATTEMPTS.ID_COLUMN2)
.values(uint(1), "abc"));
标签:jooq,composite-key,java,sql 来源: https://codeday.me/bug/20190828/1754036.html