python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
JOOQ -> Convert alias to datatype
I have a query that returns a field of type array, and I used .as('Names'), to give it an alias.
Now I need to assign this to a class.
How can I convert the AliasField to datatype MutableSet?
I tried ...
JaneD
Votes: 0
Answers: 1
Execute JOOQ's batchInsert fetching results
Is there any way of executing a batchInsert in JOOQ getting the results as you would in a regular insertInto().set().returning()?
E.g:
Having an entity as follows:
data class Person(
val id: Int,
...

Alejandro Lorefice
Votes: 0
Answers: 1
Jooq order by not in jsonArrayArg
The query statement which need to be executed is
dslContext.select(
jsonObject(
key("id").value(ENTITY.ID),
key("name").value(ENTITY.NAM...
Sai Uttej
Votes: 0
Answers: 1
Jooq code generation from multiple databases
How can I configure my maven to generate code from different databases?
I have this configuration:
<plugin>
<groupId>org.jooq</groupId>
<artifactId>jooq-codegen-maven&l...
alf3ratz
Votes: 0
Answers: 1