From 5976acf7d1a883cd8ae00a46dbc8ba8346f4ad4a Mon Sep 17 00:00:00 2001 From: cweiske Date: Thu, 5 Nov 2009 08:58:08 +0000 Subject: tell people how to debug database queries git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@525 b3834d28-1941-0410-a4f8-b48e95affb8f --- doc/developers/debugging | 20 ++++++++++++++++++++ src/SemanticScuttle/Service/Factory.php | 13 +++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 doc/developers/debugging 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('', <<sql_report('display'); +FNC + ) +); +------ +To see database queries in SemanticScuttle, add +> ?explain=1 +to your URL. diff --git a/src/SemanticScuttle/Service/Factory.php b/src/SemanticScuttle/Service/Factory.php index 2461575..a073251 100644 --- a/src/SemanticScuttle/Service/Factory.php +++ b/src/SemanticScuttle/Service/Factory.php @@ -134,5 +134,18 @@ class SemanticScuttle_Service_Factory self::$db = $db; } + + + /** + * Returns sql database object + * + * @return void + */ + public static function getDb() + { + self::loadDb(); + return self::$db; + } + } ?> -- cgit v1.2.3