Codeigniter

Get the last executed Query in Codeigniter

codeigniter
In brief
The last executed query can be retrieved in Codeigniter using the function.

The last executed query can be retrieved in Codeigniter using the function

$lastquery = $this->db->last_query();
echo $lastquery;

This will print the query in the format

/// SELECT * FROM sometable....

Leave a Comment