aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-11-05 08:58:08 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-11-05 08:58:08 +0000
commit5976acf7d1a883cd8ae00a46dbc8ba8346f4ad4a (patch)
tree7d345bb974d92c6a4d38428eb323b6817858296b /doc
parent00cffa7b096fd9856e74da3724b8f684a7a1ca3b (diff)
downloadsemanticscuttle-5976acf7d1a883cd8ae00a46dbc8ba8346f4ad4a.tar.gz
semanticscuttle-5976acf7d1a883cd8ae00a46dbc8ba8346f4ad4a.tar.bz2
tell people how to debug database queries
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@525 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'doc')
-rw-r--r--doc/developers/debugging20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/developers/debugging b/doc/developers/debugging
new file mode 100644
index 0000000..7f84da6
--- /dev/null
+++ b/doc/developers/debugging
@@ -0,0 +1,20 @@
+How to debug SemanticScuttle
+============================
+
+
+Database queries
+----------------
+In config.php, enable debugMode.
+Further, add the following there:
+-------
+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
+to your URL.