标签:sqlstate tis mys conf pre 函数返回 column name lang
<!-- tableName:用于自动生成代码的数据库表;domainObjectName:对应于数据库表的javaBean类名;不需要生成Example类 -->
<table schema="" tableName="ACT_SecurityBlockLog" domainObjectName="BlockLog">
<generatedKey column="id" sqlStatement="MySql" identity="true"/>
</table>
<insert id="insert" parameterType="Activity" keyProperty="id"
keyColumn="ID" useGeneratedKeys="true">
int res = UserMapper.insert(user);
user.getId();// 新增的id在user对象中,UserMapper.insert函数返回的还是受影响的行
标签:sqlstate tis mys conf pre 函数返回 column name lang
原文地址:https://www.cnblogs.com/onepaigu/p/14813890.html