我的 WordPress 插件有一个名为 ID 的 自动增量主键字段表。当一个新行插入到表中时,我希望得到插入的 ID 值。
其特点是使用 AJAX 将数据发布到服务器以插入数据库。在 AJAX 响应中返回新的行 ID 以更新客户端状态。有可能多个客户机同时向服务器发送数据。因此,我必须确保每个 AJAX 请求都得到响应的 EXACT 新行 ID。
In PHP, there is a method called < em > mysql _ insert _ id for this feature.But, it is valid for race condition only if the argument is 链接标识符 of last operation. My operation with database is on $wpdb. How to extract the 链接标识符 from $wpdb to make sure mysql_insert_id work? Is there any other way to get the last-inserted-row id from $wpdb?
谢谢。