for example, i want to convert this;
$this->db->get('table');
to this;
'SELECT * FROM table'
is there any function for this? i searched on the user guide of CI but didnt find any solution.
|
for example, i want to convert this;
to this;
is there any function for this? i searched on the user guide of CI but didnt find any solution. | |||
|
feedback
|
|
You can also use | |||||||||||||||||
feedback
|
|
Try
after you run your Active Record Query and it'll spit out the raw SQL it ran for you. I use it often. | |||
|
feedback
|