TYPO3 Extbase SQL Debug

Damit mir der Orignal Link nicht wieder verloren geht:

Open the file „/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php“
Navigate to the function „GetObjectDataByQuery()“
Go to the line next to „$this->replacePlaceholders($sql, $parameters, $tableName);“
Insert the following code

var_dump($sql);

Diese Vorgehensweise ist besser als andere im Netz da es nach „replacePlaceholders“ ansetzt, somit hat man wirklich den kompletten SQL Query.

Original von hier:
http://www.derhansen.de/2013/01/typo3-get-resulting-sql-from-extbase.html