insert into test (test,testName) values (test,testName) 其_sql获取自增id">
赞
踩
在日常写项目过程中,可能会遇到这种情况,在数据库设置的一个默认自增id,如何在接口中如何获取呢?
sql语句如下:
<insert id="testMapper" useGeneratedKeys="true" keyProperty="testId">
insert into test
(test,testName)
values
(test,testName)
</insert>
其中
useGeneratedKeys=“true” 是固定格式
keyProperty="" 里边是要获取的自增id
int testId = testMapper.getTestId();//这样就可获取到数据库里的自增id
本周还是以项目为主,希望项目尽快完成。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。