gpt4 book ai didi

java - MyBatis java 和 MySql 局部变量

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:55:47 24 4
gpt4 key购买 nike

我是 Java 世界的新手。我有一个简单查询的问题:

<insert id="create" parameterType="models.entities.CategoryEntity">

set @catId := (select categoryId from Categories limit 1);
insert into Categories(CategoryId, Title, LeftValue, RightValue)
values(@catId, 'Test in', 1,2);
....
</insert>

当我试图用 mybatis 运行它时,它只是失败了:

PersistenceException occured : ### Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'insert into Categories(CategoryId, Title, LeftValue, RightValue) values(' at line 2 ### The error may involve Category.create-Inline ### The error occurred while setting parameters ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'insert into Categories(CategoryId, Title, LeftValue, RightValue) values(' at line 2

如果我删除这一行:

set @catId := (select categoryId from Categories limit 1);

然后一切正常。我究竟做错了什么?是jdbc还是mybatis的问题?如何在 mybatis 中使用 mysql @variables?有人有在 mybatis 中使用 MySql 局部变量的例子吗?

最佳答案

我找到了如何让它发挥作用。只需设置数据源属性 allowMultiQueries=true

jdbc:mysql://localhost:3306/DBS?allowMultiQueries=true

关于java - MyBatis java 和 MySql 局部变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5144049/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com