Wednesday, 24 August 2016

Get last executed query in MySQL with PHP/CodeIgniter

$this->db->last_query();
Returns the last query that was run (the query string, not the result).
  
Example:
         $str = $this->db->last_query();

No comments:

Post a Comment

Git merge branch to another branch

$ git checkout develop $ git pull $ git checkout test-branch $ git merge develop $ git push