I have to switch a project's DBMS from MySQL to Oracle. Transfer of tables and data is already done and the application seems to work now (the only thing I had to fix was the getFloat() function in creole's ResultSetCommon.php. I don't know if there is another solution but Oracle uses commas instead of decimal points and as a result getFloat() could not cast correctly into float. Feel free to tell me if there is another solution for that
Now I'd like to see which SQL queries are actually executed.
When using MySQL all SQL queries can be found in the web debug toolbar, works fine.
But when I switch to Oracle there's no db icon in the web debug toolbar. When I click "logs & msgs" I can see creole prepareStatement() entries, but no executeQuery() entries (like in the MySQL version of the project).
As I need to know the values that are replaced into the prepared statement's question marks, these prepared statements are not sufficient to me.
Please help. Thanks!
