dongzi1959 2012-12-04 15:41
浏览 44
已采纳

Pear :: MDB2 - 获取最后执行的查询

I have to use Pear MDB2 but don't know how to get the last executed query. Is there a way to do that?

Thanks,

  • 写回答

1条回答 默认 最新

  • doushi3189 2012-12-04 16:25
    关注

    AS you can see in this link: https://pear.php.net/package/MDB2/docs/latest/MDB2/MDB2_Driver_Common.html#var$last_query you have a variable called $last_query that stores the last query sent to the driver.

    I have not checked it, but based on the documentation you can use:

    $mdb2 =& MDB2::connect('YOUR_DSN');
    if (PEAR::isError($mdb2)) {
        die($mdb2->getMessage());
    }
    
    // Proceed with a query...
    $res =& $mdb2->query('SELECT * FROM clients');
    
    echo $mdb2->last_query;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?