duanmaduan1848 2015-04-17 22:11
浏览 401
已采纳

使用PDO和PHP从MSSQL表获取最后插入记录的id

I am trying to get the id of the last record inserted in an mssql database using pdo via php. I HAVE read many posts, but still can't get this simple example to work, so I am turning to you. Many of the previous answers only give the SQL code, but don't explain how to incorporate that into the PHP. I honestly don't think this is a duplicate. The basic insert code is:

$CustID = "a123";
$Name="James"
$stmt = "
        INSERT INTO OrderHeader (
            CustID, 
            Name 
        ) VALUES (
            :CustID, 
            :Name
        )";
        $stmt = $db->prepare( stmt  );
        $stmt->bindParam(':CustID', $CustID);       
        $stmt->bindParam(':Name', $Name);
        $stmt->execute();

I have to use PDO querying an MSSQL database. Unfortunately, the driver does not support the lastinsertid() function with this database. I've read some solutions, but need more help in getting them to work.

One post here suggests using SELECT SCOPE_IDENTITY(), but does not give an example of how incorporate this into the basic insert code above. Another user suggested:

    $temp = $stmt->fetch(PDO::FETCH_ASSOC);

But, that didn't yield any result.

  • 写回答

1条回答 默认 最新

  • douxianji6104 2015-04-18 03:52
    关注

    If your id column is named id you can use OUTPUT for returning the last inserted id value and do something like this:

        $CustID = "a123";
        $Name="James"
        $stmt = "INSERT INTO OrderHeader (CustID, Name) 
                 OUTPUT INSERTED.id
                 VALUES (:CustID, :Name)";
    
        $stmt = $db->prepare( stmt  );
        $stmt->bindParam(':CustID', $CustID);       
        $stmt->bindParam(':Name', $Name);
        $stmt->execute();
    
        $result = $stmt->fetch(PDO::FETCH_ASSOC);
        echo $result["id"]; //This is the last inserted id returned by the insert query
    

    Read more at:

    https://msdn.microsoft.com/en-us/library/ms177564.aspx

    http://php.net/manual/es/pdo.lastinsertid.php

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 宇视监控服务器无法登录
  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥15 DruidDataSource一直closing
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据