codeigniter 4 get last query

Solutions on MaxInterview for codeigniter 4 get last query by the best coders in the world

showing results for - "codeigniter 4 get last query"
Sergio
08 Jul 2020
1print_r($this->db->last_query());    
Luciano
28 Jul 2019
1$this->db->last_query();
Cristóbal
24 Apr 2019
1$this->db->last_query();
2
3Returns the last query that was run (the query string, not the result). Example:
4$str = $this->db->last_query();
5
6// Produces: SELECT * FROM sometable.... 
7
Kirsten
08 Jun 2020
1We can get last executed query using last_query() function of db class in codeigniter. It is a very simple to use $this->db->last_query() function to see SQL statements of last executed query in php codeigniter app. You have to simple code that function after your main query that you wanted check 
2$this->db->last_query()
Emilio
10 Feb 2019
1$data['lastQuery'] = $db->getLastQuery(); //ci4
Giovanni
30 Sep 2020
1public function test_db(){    $query = $this->db->get("items");      $str = $this->db->last_query();       echo "<pre>";    print_r($str);    exit;}
similar questions
queries leading to this page
codeigniter 4 get last query