我在jclipse中安装了jOOQ,为mySQL生成了类,但是我仍然有问题要写一些基本的查询。
我尝试使用返回生成的密钥来组合插入查询,但编译器抛出错误
表:tblCategory 列:category_id,parent_id,name,rem,uipos
Result<TblcategoryRecord> result= create.insertInto(Tblcategory.TBLCATEGORY,
Tblcategory.PARENT_ID, Tblcategory.NAME, Tblcategory.REM, Tblcategory.UIPOS)
.values(node.getParentid())
.values(node.getName())
.values(node.getRem())
.values(node.getUipos())
.returning(Tblcategory.CATEGORY_ID)
.fetch();
还尝试了其他不同的方法 怎么做正确的方法?
感谢 的Charis
答案 0 :(得分:12)
您使用的语法是插入多个记录。这将插入4条记录,每条记录包含一个字段。
.values(node.getParentid())
.values(node.getName())
.values(node.getRem())
.values(node.getUipos())
但是你声明了4个字段,所以这不起作用:
create.insertInto(Tblcategory.TBLCATEGORY,
Tblcategory.PARENT_ID, Tblcategory.NAME, Tblcategory.REM, Tblcategory.UIPOS)
您可能想要做的是:
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();
或者:
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();
或许,使用
你会更好TblcategoryRecord result =
// [...]
.fetchOne();
有关详细信息,请参阅手册:
http://www.jooq.org/doc/2.6/manual/sql-building/sql-statements/insert-statement/
或者用于创建返回值的INSERT
语句的Javadoc:
http://www.jooq.org/javadoc/latest/org/jooq/InsertReturningStep.html
答案 1 :(得分:4)
首选解决方案
try {
TblcategoryRecord record = (TblcategoryRecord) 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)
.fetchOne();
node.setId(record.getCategoryId());
} catch (SQLException e1) { }
答案 2 :(得分:0)
尝试
YoutableRecord result = create
.insertInto(YOURTABLE)
.set(YOURTABLE.PROD_NAME, "VAL")
.returning(YOURTABLE.ID_PR)
.fetchOne();
int id = result.getValue(Products.PRODUCTS.ID_PR);