Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

consulta de inserção jOOQ com retorno de chaves geradas


A sintaxe que você está usando é para inserir vários registros. Isso vai inserir 4 registros, cada um com um campo.
.values(node.getParentid())
.values(node.getName())
.values(node.getRem())
.values(node.getUipos())

Mas você declarou 4 campos, então isso não vai funcionar:
create.insertInto(Tblcategory.TBLCATEGORY, 
  Tblcategory.PARENT_ID, Tblcategory.NAME, Tblcategory.REM, Tblcategory.UIPOS)

O que você provavelmente quer fazer é isso:
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();

Ou alternativamente:
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();

Provavelmente, você está ainda melhor usando
TblcategoryRecord result =
  // [...]
  .fetchOne();

Para mais detalhes, consulte o manual:

http://www.jooq. org/doc/2.6/manual/sql-building/sql-statements/insert-statement/

Ou o Javadoc para criar INSERT instruções que retornam valores:

http://www.jooq.org/javadoc/latest/org /jooq/InsertReturningStep.html