On Mon, 2007-03-26 at 12:12 -0500, Greg Donald wrote:
> On 3/26/07, Tim Chase <[EMAIL PROTECTED]> wrote:
> >    result = render_to_response('foo.html', context)
> >    f = file('debug.txt', 'w')
> >    f.write(repr(connection.queries))
> >    f.close()
> >    return result
> 
> Where can I put this so I get all queries for every request into a single 
> file?

If you want to capture every query automatically like this, you can edit
django/db/backends/util.py and put the logging to file in place inside
the CursorDebugWrapper.execute() method -- where it is currently
appending to self.db.queries.

However, I would only use that as a last resort, since it's going to be
a lot of queries and difficult to work out what part of the code sent
what query.

Regards,
Malcolm


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to