`

ibatis 返回sql server和mysql主键自增值

阅读更多
用ibatis 返回sqlserver主键自增值

<selectKey resultClass="int" keyProperty="id" type="post" >  
	 select @@IDENTITY as value  
</selectKey>


返回mysql主键自增值
<selectKey resultClass="long" keyProperty="id">
	SELECT LAST_INSERT_ID()
</selectKey>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics