Lukas Eder

Results 1551 comments of Lukas Eder

This is a non-trivial improvement in the `QOM` generator code, so I'll put this on hold for now.

A similar stack trace appears with `ROWTYPE` out parameters: ``` java.lang.NullPointerException: Cannot invoke "org.jooq.impl.AbstractRow.size()" because "row" is null at org.jooq_3.21.0-SNAPSHOT.ORACLE23AI.debug(Unknown Source) at org.jooq.impl.Tools.recordFactory(Tools.java:1568) at org.jooq.impl.Tools.newRecord(Tools.java:1471) at org.jooq.impl.Tools.newRecord(Tools.java:1449) at org.jooq.impl.Tools.getMappedUDTName(Tools.java:3891) at...

It's not Oracle specific. The same issue happens with PostgreSQL.

The simplest fix here would be to ensure we get more interesting error messages, e.g. indicating that there's a code generation configuration problem. I'm not sure if it's easy /...

It's unlikely this is specific to `hstore`. More likely, any array `Binding` are affected, if they need to parse a string representation.

This would be increasingly useful for a number of users for 2 reasons: 1. To avoid problems with the static type registry, e.g. https://github.com/jOOQ/jOOQ/issues/15286 2. To allow for more custom...

Thanks for your message, @josephglanville. It's likely that your use-case will be covered in some way. > If there is a way to do this right now with the static...

There are numerous reasons why this should be implemented. The most important reason is clearly that a lot of folks are struggling to debug the static type registry warnings that...

Another use-case of this feature is to improve the experience of working with jOOQ and plain SQL, when jOOQ currently relies on the internal `MetaDataFieldProvider` SPI (which cannot currently be...

@pedro-borges : As a workaround, please use plain SQL templating: https://www.jooq.org/doc/latest/manual/sql-building/plain-sql-templating. Create a table like this: ```java Table table = DSL.table("generate_series({0}, {1}, '10 hours')", startTimestamp, endTimestamp); ``` Where the two...