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.

link|improve this question
feedback

2 Answers

up vote 16 down vote accepted

You can also use $this->db->_compile_select() , difference between _compile_select() and last_query() is that _compile_select() gives the query string generated even if you dont run the query agaisnt the database.

link|improve this answer
thanks for your answer too, good to know that we can see the SQL code before we getting results. – WhoSayIn Sep 4 '10 at 21:10
Thanks a lot, that function is really useful! – Rocket Sep 27 '10 at 19:16
2  
I just realized that if you use _compile_select(), that you have to use $this->db->_reset_select(); after executing the query. If you don't, CodeIgniter won't clear the query, and all queries onward won't work. – Rocket Oct 15 '10 at 16:07
1  
_compile_select() is not working anymore because they protected the function at the latest CI2 Github repo. I used this function so many times and now I'm stuck. Maybe there is a solution? – Burak Erdem Oct 22 '11 at 20:26
2  
After searching CI commit history, I just saw that there is a new public method; get_compiled_select(). codeigniter.com/nightly_user_guide/database/… – Burak Erdem Oct 22 '11 at 23:36
feedback

Try

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

after you run your Active Record Query and it'll spit out the raw SQL it ran for you. I use it often.

link|improve this answer
thanks for your answer!! that was what im lookin for. – WhoSayIn Sep 3 '10 at 18:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.