Skip to content
Advertisement

Tag: jooq

Coalesce jsonArrayAgg to empty array in jOOQ

What is the equivalent for coalesce in the new jOOQ 3.14 SQL/JSON supporting version (in PostgreSQL)? The following unfortunately fails with the error “COALESCE types json and uuid[] cannot be matched”. Answer JSON.json() or JSONB.jsonb(), e.g.: But you can also use the jsonArray() or jsonbArray() constructors:

NoSuchMethod in JOOQ 3.14 InsertQuery with Postgresql

I’m trying to use Jooq’s InsertQuery to insert a record into PostgresQL database, but I’m running into following error: The query class I’m using looks like this: The user database table looks like this. It has a unique key on the username column and a primary key on the id column. If I do this using ctx.insertInto… it works fine.

jOOQ JSON query results in ORA-00979

I’m trying to execute this query to an Oracle 19c database: But I get Does jOOQs JSON feature not work with Oracle? Answer This isn’t related to your JSON usage. The same thing would have happened if you removed all of it and wrote this query instead: Your query would work in MySQL, PostgreSQL or standard SQL, where you can

JOOQ materialized views

is it possible to create materialized views using the JOOQ builder? Something like this Answer In jOOQ 3.14, not yet: https://github.com/jOOQ/jOOQ/issues/9483 But you can use plain SQL templating to work around this limitation, to at least get some type safety in your statement:

Is there a way to query ltrees in JOOQ?

Is there any sort of extension that would allow me to use Postgres ltrees in JOOQ without having to use raw SQL? Any way to make one myself maybe? Answer Starting from jOOQ 3.17: With #13188, jOOQ has added native support for LTREE types (and similar) via the jooq-postgres-extensions module: Just add that module to both code generation and runtime

Jooq Java CTE wrong render

I have CTE that is been creating from DSL.values: Then i am trying use it to get needed values from DB But i have only the next error I suppose it happens because of (select * from (values(cast(? as varchar)) How to fix it? Other methods without cte work fine. Answer The problem was there: “Id” is needed to be

JOOQ – inline Converter not being applied

In my build.gradle I use a converter in my forcedTypes. This works fine where i need it. However, I am trying to convert a comma separated string into a list of enums for a specificuse case: This throws an exception This is the model I am fetching into: Am I missing something? UPDATE: I am able to convert inline using

jooq query for sql query with analytical function

i have sql query like i need to write in jOOQ, any help. I tried the below Also,is there any way to avoid listing all columns in select. Instead of Something like Answer A derived table can be constructed like this: Also, is there any way to avoid listing all columns in select You’re looking for Table.asterisk() to produce the

JOOQ: How to resolve foreign keys as objects?

Say I have a table that references another table, in this case “TestScenarios” references “TestSchemas”. So each TestScenario HAS-A TestSchema. I autogenerated DAOs, however, when fetching TestScenario instance via the DAO the TestSchema field is an integer, not a TestSchema-object. How can I get JOOQ to resolve foreign keys directly as objects up to a certain depth? Answer DAOs don’t

Advertisement