I wanted to know if there is way to log the mysql queries in CakePHP being executed when we use the find method on the models, I know that rails database queries, so does Cake do the same, if so how can I enable it or use it?
Shiv
|
|
|
Assuming you are on a nix os, the best approach would actually to tail the mysql log itself. log in Ubuntu when installing from repository
As mentioned below, this is a huge performance killer (well, all logs have some performance impact). So, make sure you use it only on your dev/QA machines and only for short periods on your production machine. |
||||
|
This page has instructions on how to get Cake to log queries the same way as rails. |
|||
|
|
|
A Very simple method to log all the queries being executed: in your cake\libs\model\datasources\dbo\dbo_mysql.php find the _execute function:
add the line "$this->log($sql);" before "return mysql_query($sql, $this->connection);"
That's it!!!!! All your SQL Queries gets logged. Make sure the log file is configured properly and have sufficient permission. Enjoy |
|||
|
|
CakePHP 1.3 uses the
Or take it's code directly if you need to do something else with it (like echo it from a ShellTask)
Echo with e.g.:
|
|||
|
|
|
This is what I use (put it in element folder then include in your layout)
then you will find the mysql.log file in TMP.logs.DS.mysql.log |
||||
|
|