jooq- fetching a single value

这一生的挚爱 提交于 2019-12-05 02:12:31

You're doing it right. The way the jOOQ DSL is constructed with Java generics, your ResultQuery<Record1<Date>> doesn't "know" it is selecting only a single value, even if the ResultQuery uses Record1 as a row type.

Apart from repeating the column, you have some other options:

ResultQuery<Record1<Date>> query = // ...

// Use two method calls (this may result in a NullPointerException!
// as fetchOne() may return null):
Date date1 = query.fetchOne().value1();

// Use fetchValue():
Date date2 = getDSLContext().fetchValue(query);

See also the DSLContext.fetchValue() Javadoc.

Using a more LINQ-style syntax

On a side-note, there had been discussions in the past about using a more LINQ-style syntax in the jOOQ API:

from Table
where Predicates
select Projection

What may look like a good idea at first is raising new questions:

  1. What about the ORDER BY, FOR UPDATE clauses, which should still be placed after SELECT. (See this post for details).
  2. What about set operations, like UNION, INTERSECT and EXCEPT.

I've also written about the difference between lexical and logical order of operations in SQL, here

These open issues made us stick with the standard SQL syntax.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!