La sintassi che stai utilizzando è per inserire più record. Questo inserirà 4 record, ciascuno con un campo.
.values(node.getParentid())
.values(node.getName())
.values(node.getRem())
.values(node.getUipos())
Ma hai dichiarato 4 campi, quindi non funzionerà:
create.insertInto(Tblcategory.TBLCATEGORY,
Tblcategory.PARENT_ID, Tblcategory.NAME, Tblcategory.REM, Tblcategory.UIPOS)
Quello che probabilmente vuoi fare è questo:
Result<TblcategoryRecord> result = create
.insertInto(Tblcategory.TBLCATEGORY,
Tblcategory.PARENT_ID, Tblcategory.NAME, Tblcategory.REM, Tblcategory.UIPOS)
.values(node.getParentid(), node.getName(), node.getRem(), node.getUipos())
.returning(Tblcategory.CATEGORY_ID)
.fetch();
O in alternativa:
Result<TblcategoryRecord> result = create
.insertInto(Tblcategory.TBLCATEGORY)
.set(Tblcategory.PARENT_ID, node.getParentid())
.set(Tblcategory.NAME, node.getName())
.set(Tblcategory.REM, node.getRem())
.set(Tblcategory.UIPOS, node.getUipos())
.returning(Tblcategory.CATEGORY_ID)
.fetch();
Probabilmente stai ancora meglio usando
TblcategoryRecord result =
// [...]
.fetchOne();
Per maggiori dettagli, considera il manuale:
http://www.jooq. org/doc/2.6/manual/sql-building/sql-statements/insert-statement/
Oppure il Javadoc per creare INSERT
istruzioni che restituiscono valori:
http://www.jooq.org/javadoc/latest/org /jooq/InsertReturningStep.html