2009-11-05 08:58:08 +00:00
|
|
|
How to debug SemanticScuttle
|
|
|
|
============================
|
|
|
|
|
|
|
|
|
|
|
|
Database queries
|
|
|
|
----------------
|
2011-05-26 19:44:29 +00:00
|
|
|
|
|
|
|
In ``data/config.php``, enable ``debugMode``.
|
|
|
|
Further, add the following afterwards: ::
|
|
|
|
|
|
|
|
register_shutdown_function(
|
|
|
|
create_function('', <<<FNC
|
|
|
|
\$GLOBALS['db'] = SemanticScuttle_Service_Factory::getDb();
|
|
|
|
\$GLOBALS['db']->sql_report('display');
|
|
|
|
FNC
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
To see database queries in SemanticScuttle, add ::
|
|
|
|
|
|
|
|
?explain=1
|
|
|
|
|
2009-11-05 08:58:08 +00:00
|
|
|
to your URL.
|