i want to get some database tables from my typo3 extensions. The Extension is based on extbase.
The query always returns nothing but the data exists
I\'ve tr
An easy way without changing any Typo3 core code and not mentioned in any forum so far is using the php "serialize()" method:
$result = $query->execute(); echo (serialize($result));
In the result object you find the SQL query ("statement;" ...)