MySQL:LAST_INSERT_ID() 返回 0

MySQL: LAST_INSERT_ID() returns 0(MySQL:LAST_INSERT_ID() 返回 0)
本文介绍了MySQL:LAST_INSERT_ID() 返回 0的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这个测试表:

CREATE TABLE IF NOT EXISTS `test` (
    `id` INT(10) AUTO_INCREMENT,
    PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4;

使用这三个中的任何一个插入

inserting using either of these three

INSERT INTO `test` (`id`) VALUES (NULL);
INSERT INTO `test` (`id`) VALUES (0);
INSERT INTO `test` () VALUES ();

和发行

SELECT LAST_INSERT_ID();

但查询结果总是0.

PHP 的 mysql_insert_idPDO::lastInsertId() 也没有结果.

PHP's mysql_insert_id and PDO::lastInsertId() yield no result either.

我一整天都在玩弄这件事,但无法让它发挥作用.想法?

I've been toying with this whole day and can't get it to work. Ideas?

推荐答案

问题似乎出在 MySQL 的 phpmyadmin 配置文件 PersistentConnections 设置为 FALSE 这导致了一个新的CONNECTION_ID 每次发出查询时 - 因此使 SELECT LAST_INSERT_ID() 无效.

The problem seemed to be in MySQL's phpmyadmin config file PersistentConnections set to FALSE which resulted in a new CONNECTION_ID every time a query was issued - therefore rendering SELECT LAST_INSERT_ID() ineffective.

后续主题中的更多信息每个查询都会创建一个新的 CONNECTION_ID()

同时感谢dnagirl的帮助

这篇关于MySQL:LAST_INSERT_ID() 返回 0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)