New Dialects
It’s been a few releases since we’ve added support for new dialects, but finally some very interesting RDBMS of increasing popularity have joined the jOOQ family including:
...
In MySQL, you cannot do this:
create table t (i int primary key, j int);
insert into t values (1, 1);
update t
set j = (select max(j) from t) + 1;
The UPDATE statement will raise ...
jOOQ 3.19 finally delivers on a set of features that will greatly simplify your queries further, after jOOQ 3.11 introduced implicit to-one joins:
What are these features?
Many ORMs ...
New dialects:
jOOQ 3.20 ships with 2 new experimental dialects:
ClickHouse in all editions, including the jOOQ Open Source Edition
Databricks in the jOOQ Enterprise Edition
...