完全な sql ステートメントを表示したい場合は、Zend_Debug を使用できます。たとえば、SQL ステートメントが変数 $select にあり、SQL ステートメント全体を表示したい場合は、次のコード行を使用できます。
Zend_Debug::Dump($select);
exit;
または、コードが Zend_Db_Table クラスで作成されている場合は、次を使用できます。
$select = new Zend_Db_Select(Zend_Registry::get('db'));
$select->from('string');
Zend_Debug::Dump($select->assemble());
exit;
SQL ステートメントを表示する最良の方法は、データベース接続でプロファイリング機能を使用することだと思います。これはロギング機能との組み合わせであり、Firefox 用の firePHP アドオンは私のお気に入りの設定です。
Zend Framework の MVC 構成を使用する場合、これは次のコード行で行われます。
// setup the database connection
$db = Zend_Db::factory(Zend_Registry::get('config')->database->adapter,Zend_Registry::get('config')->database->params);
// create a new profiler
profiler = new Zend_Db_Profiler_Firebug('All DB Queries');
// enable profiling (this is only recommended in development mode, disable this in production mode)
$profiler->setEnabled(true);
// add the profiler to the database object
$db->setProfiler($profiler);
// setup the default adapter to use for database communication
Zend_Db_Table_Abstract::setDefaultAdapter($db);
// register the database object to access it in other parts of the project
Zend_Registry::set('db',$db);
/**
*
* This part is optional
*
* You can use this logger to log debug information to the firephp add-on for Firefox
* This is handy for debugging but must be disabled in production mode
*
*/
// create logger
$logger = new Zend_Log();
// create firebug writer
$firebug_writer = new Zend_Log_Writer_Firebug();
// add writer to logger
$logger->addWriter($firebug_writer);
// register the logger object to access it in other parts of the project
Zend_Registry::set('log',$logger);
firebug アドオン (firephp の要件) は、次の Web サイトにあります:
Firebug
FirePHP アドオンは、次の Web サイトにあります:
FirePHP
イヴォ・トロンパート