Answers for "last query codeigniter 4"

SQL
1

print last query in codeigniter

We 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 
$this->db->last_query()
Posted by: Guest on January-23-2021
0

codeigniter echo last query

public function test_db(){    $query = $this->db->get("items");      $str = $this->db->last_query();       echo "<pre>";    print_r($str);    exit;}
Posted by: Guest on May-02-2020

Code answers related to "last query codeigniter 4"

Code answers related to "SQL"

Browse Popular Code Answers by Language