Python操作MySQL获取插入数据的主键id

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python操作MySQL获取插入数据的主键id相关的知识,希望对你有一定的参考价值。

参考技术A 通过 database.insert_id() 方法可以获取插入数据的主键id, 注意一定要在commit之前获取,否则返回0。

MyBatis+MySQL 返回插入的主键ID

需求:使用MyBatis往MySQL数据库中插入一条记录后,需要返回该条记录的自增主键值。

方法:在mapper中指定keyProperty属性,示例如下:

<insert id="insertAndGetId" useGeneratedKeys="true" keyProperty="userId" parameterType="com.chenzhou.mybatis.User">
    insert into user(userName,password,comment)
    values(#{userName},#{password},#{comment})
</insert>

 useGeneratedKeys:

取值范围true|false

默认值是:false。

含义:设置是否使用JDBC的getGenereatedKeys方法获取主键并赋值到keyProperty设置的领域模型属性中。MySQL和SQLServer执行auto-generated key field,因此当数据库设置好自增长主键后,可通过JDBC的getGeneratedKeys方法获取。但像Oralce等不支持auto-generated key field的数据库就不能用这种方法获取主键了。


keyProperty:

(仅对 insert 有用) 标记一个属性, MyBatis 会通过 getGeneratedKeys 或者通过 insert 语句的 selectKey 子元素设置它的值。默认: 不设置。

所示,我们在insert中指定了keyProperty="userId",其中userId代表插入的User对象的主键属性。

public class User {
    private int userId;
    private String userName;
    private String password;
    private String comment;
    
    //setter and getter
}

 

 

public interface UserDao {

    public int insertAndGetId(User user);

}

 

 

 

测试:

 

 

User user = new User();
user.setUserName("chenzhou");
user.setPassword("xxxx");
user.setComment("测试插入数据返回主键功能");

System.out.println("插入前主键为:"+user.getUserId());
userDao.insertAndGetId(user);//插入操作
System.out.println("插入后主键为:"+user.getUserId());

  

 

输出:

插入前主键为:0
插入后主键为:15

查询数据库:

技术分享

 

如上所示,刚刚插入的记录主键id为15

以上是关于Python操作MySQL获取插入数据的主键id的主要内容,如果未能解决你的问题,请参考以下文章

SQL怎么在有外键的主键表中插数据

获取最后插入行的主键 ID 以运行多个插入操作 [重复]

如何准确高效的获取数据库新插入数据的主键id

mysql数据库中自动增长的主键也可以手动插入值吗?如何插入

MySQL:在没有 auto_increment 的情况下获取最后插入的主键

使用 JPA 获取最后插入记录的主键