Hi Lukas
Thanks for your prompt reply.
I have tried to modify my code as such:
my.application.jooq.rpm.tables.pojos.Tablename TablenamePojo = ...
Record record = dsl.insertInto(my.application.jooq.user2.Tables.TABLENAME)
.set(
dsl.newRecord(my.application.jooq.user2.Tables.TABLENAME, TablenamePojo)
)
.set(TABLENAME.COL_PRIMARYKEY,
DSL.sequence(Sequences.TABLENAMESEQ.getUnqualifiedName(),
Sequences.TABLENAMESEQ.getDataType()).nextval())
.returning()
.fetchOne()
return record.into(Tablename.class)
But the error still occurs.
The only thing that seems to help is downgrading the jdbc driver to ojdbc6.
After that, *all works as expected*.
Unfortunately this is not a very robust approach, as there is no way to tell if
the issue will reappear in other driver/db combinations.
As for the other approach ("Settings.renderSchema = false"): Is this something
I need to specify in the generator, or is this a runtime configuration?
I did not find that setting anywhere in the XML schema used for configuring the
generator.
How would I use that?
Best, Markus
--
You received this message because you are subscribed to the Google Groups "jOOQ
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.