A. executeUpdate(sql) 返回值是什么
executeUpdate(sql) 的返回值是一个整数(int)。
当executeUpdate(sql)是INSERT、UPDATE 或 DELETE 语句时,返回的是受影响的行数(即更新的行数)。
当executeUpdate(sql)是CREATE TABLE 或 DROP TABLE 等不操作行的语句,executeUpdate 的返回值是零。
(1)sqlupdate返回值扩展阅读
executeUpdate(sql)的用法介绍:
用于执行 INSERT、UPDATE 或 DELETE 语句以及 SQL DDL(数据定义语言)语句,例如 CREATE TABLE 和 DROP TABLE。INSERT、UPDATE 或 DELETE 语句的效果是修改表中零行或多行中的一列或多列。例如:
//加载数据库驱动
Class.forName("com.mysql.jdbc.Driver");
//使用DriverManager获取数据库连接
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","1234");
//使用Connection来创建一个Statment对象
Statement stmt = conn.createStatement();
//执行DML语句,返回受影响的记录条数
return stmt.executeUpdate(sql);
B. mybatis sql标签<update>怎么获取返回值
mybatis的update默认返回操作记录的条数,先定义一个resultMap:
<resultMap id="integer" type="java.lang.Integer">
</resultMap>
然后标签里面返回integer:
<update id="do..." resultMap="integer"></update>
在定义接口里面返回Integer即可:
public Integer do...();