我对以下示例jOOQ语句中调用方法 count()有疑问:
create.select(AUTHOR.FIRST_NAME, AUTHOR.LAST_NAME, count())
.from(AUTHOR)
.join(BOOK).on(AUTHOR.ID.equal(BOOK.AUTHOR_ID))
.where(BOOK.LANGUAGE.eq("DE"))
.and(BOOK.PUBLISHED.gt(date("2008-01-01")))
.groupBy(AUTHOR.FIRST_NAME, AUTHOR.LAST_NAME)
.having(count().gt(5))
.orderBy(AUTHOR.LAST_NAME.asc().nullsFirst())
.limit(2)
.offset(1)
.forUpdate()
.of(AUTHOR.FIRST_NAME, AUTHOR.LAST_NAME)
我试图创建这样的机制来调用方法而不使用对象/类引用,但我放弃了。是否真的有可能实现它?
感谢您的帮助。
Wicia
答案 0 :(得分:5)
挂在那里! : - )
您引用网站上的第一个示例。我建议关注manual's section about how to read the manual(我知道,这听起来像是我和RTFM的对手。很抱歉),你会发现一些解释,例如。
// Whenever you see "standalone functions", assume they were static imported
// from org.jooq.impl.DSL. "DSL" is the entry point of the static query DSL
exists(); max(); min(); val(); inline();
// correspond to DSL.exists(); DSL.max(); DSL.min(); etc...
tutorial也显示了如何操作,即使用静态导入:
// For convenience, always static import your generated tables and
// jOOQ functions to decrease verbosity:
import static test.generated.Tables.*;
import static org.jooq.impl.DSL.*;
请注意,有一个待处理的功能请求#3503用于改进手册和带有工具提示的网站,以便向新用户解释这些内容,这将很快成为您的常见做法。 jOOQ。