Questions tagged [zend-db-profiler]

5 questions
3
votes
1 answer

Zend_Db_Profiler log to file

Is there a simple way to log to queries to a file? I have Firebug profiling working no problem with: resources.db.params.profiler.enabled = "true" resources.db.params.profiler.class = "Zend_Db_Profiler_Firebug" It would be nice to log this to a…
Michael
  • 3,568
  • 3
  • 37
  • 50
1
vote
1 answer

php zend db profiler filter by table name

Is there a way to filter the queries by table name in the zend db profiler? The documentation doesn't have anything but I don't know if I can just rely on this document completely..if you know a way, please advise..
geej
  • 341
  • 9
  • 22
1
vote
4 answers

How to inspect every query going to DB from Zend Framework

I have a complex reporting application that allows clients to login and view reports for their client data. There are several sections of the application where there are database calls, using various controllers. I need to make sure that client A…
1
vote
1 answer

Has anyone used firephp with firefox 4 and Zend Framework DB Profiler?

I can't see the log in the console. The headers show the log, but nothing show up on the console. I've tested the Zend_Log_Writer_Firebug and everything works fine. Any tips?
Keyne Viana
  • 6,194
  • 2
  • 24
  • 55
1
vote
0 answers

PHP SQLite PDO very slow when using "GROUP BY" clause

I Have this project here playing with Philly crime data. I'm building this query to select incidents by type and police district. It takes 21 seconds in PHP and Zend, but under 3 seconds on the command line. I debug with Zend_Db_Profiler with…