Login

Pretty print SQL of query sets

Author:
peterbe
Posted:
May 5, 2009
Language:
Python
Version:
1.0
Score:
0 (after 0 ratings)

Install sqlparse with easy_install sqlparse and then you can easily debug the SQL like this:

def view(request):
    data = MyModel.objects.filter(something__very=complex)
    print_sql(data)
    ...

Inspired by Simon Willison

1
2
3
4
5
6
import sqlparse

def print_sql(qs):
    q = qs.query.as_sql()
    statement = q[0] % q[1]
    print sqlparse.format(statement, reindent=True, keyword_case='upper')

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

peterbe (on May 5, 2009):

You might want to wrap this with something so that this doesn't get used in non-development mode. For example:

if not settings.DEBUG:
    def print_sql(*__):
        pass

#

canassa (on August 6, 2010):

This should work in Django 1.2:

def print_sql(qs):
    q = qs.query.__str__()
    print sqlparse.format(q, reindent=True, keyword_case='upper')

#

Please login first before commenting.