Is there a way that one can cause CakePHP to dump its SQL log on demand? I'd like to execute code up until a point in my controller and see what SQL has been run.
|
|
|
Try this:
http://api13.cakephp.org/class/dbo-source#method-DboSourcegetLog You will have to do this for each datasource if you have more than one though. |
|||||||||||
|
|
If you're using CakePHP 1.3, you can put this in your views to output the SQL:
So you could create a view called 'sql', containing only the line above, and then call this in your controller whenever you want to see it:
(Also remember to set your debug level to at least 2 in Source: http://book.cakephp.org/view/1567/Model-Databases-and-Datasources |
|||
|
|
|
It is greatly frustrating that CakePHP does not have a $this->Model->lastQuery();. Here are two solutions including a modified version of Handsofaten's: 1. Create a Last Query FunctionTo print the last query run, in your /app_model.php file add:
Then to print output you can run:
OR
2. Render the SQL View (Not avail within model)To print out all queries run in a given page request, in your controller (or component, etc) run:
It will likely throw a missing view error, but this is better than no access to recent queries! (As Handsofaten said, there is the /elements/sql_dump.ctp in cake/libs/view/elements/, but I was able to do the above without creating the sql.ctp view. Can anyone explain that?) |
|||
|
|
|
What worked finally for me and also compatible with 2.0 is to add in my layout (or in model)
It is also depending on debug variable setted into Config/core.php |
|||
|
|
|
In CakePHP 1.2 ..
|
||||
|
|
|
for cakephp 2.0 Write this function in AppModel.php
To use this in Controller Write : echo $this->YourModelName->getLastQuery(); |
|||
|
|

