MySQL: LAST_INSERT_ID() returns 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_id
和 PDO::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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL:LAST_INSERT_ID() 返回 0
基础教程推荐
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01