Home >Database >Mysql Tutorial >Mybatis 插入数据,返回自增长的id

Mybatis 插入数据,返回自增长的id

WBOY
WBOYOriginal
2016-06-07 14:58:091410browse

Mybatis插入数据,返回自增长的id 无 insert id="insert" parameterType="Spares" useGeneratedKeys="true" keyProperty="id"insert into spares(spares_id,spares_name,spares_type_id,spares_spec)values(#{id},#{name},#{typeId},#{spec})/insert sparesDa

Mybatis 插入数据,返回自增长的id
<insert id="insert" parameterType="Spares" 
		useGeneratedKeys="true" keyProperty="id">
	insert into spares(spares_id,spares_name,spares_type_id,spares_spec)
	values(#{id},#{name},#{typeId},#{spec})
</insert>
sparesDao.insert(spares); //插入
spares.getId();//取得主键id
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn