2

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,

Andreas
  • 5,305
  • 4
  • 41
  • 60

1 Answers1

1

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;
m4t1t0
  • 5,669
  • 3
  • 22
  • 30