Template tag to dump database query info

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
rom django.template import Node
from django.template import Library
from django.conf import settings
import django.db as db
import re
from django.utils.html import escape

register = Library()

class DbInfoNode(Node):
    def __init__(self):
        pass

    def __repr__(self):
        return "<DbInfoNode>"

    def render(self, context):
        if not settings.TEMPLATE_DEBUG:
            return ""
        secs = 0.0
        for s in db.connection.queries:
            secs += float(s['time']);
        return str("%d queries, %f seconds" % (len(db.connection.queries), secs)
)

def do_dbinfo(parser, token):
    return DbInfoNode()
do_dbinfo = register.tag('dbinfo', do_dbinfo)

class DbQueryListNode(Node):
    def __init__(self):
        pass

    def __repr__(self):
        return "<DbQueryListNode>"

    def render(self, context):
        if not settings.TEMPLATE_DEBUG:
            return ""
        s = ""
        for q in db.connection.queries:
            s += "<li>" + escape(q["sql"]) + "</li>\n"
        return s

def do_dbquerylist(parser, token):
    return DbQueryListNode()

do_dbquerylist = register.tag('dbquerylist', do_dbquerylist)

More like this

  1. Yet another SQL debugging facility by miracle2k 5 years, 9 months ago
  2. db_dump.py - for dumpping and loading data from database by limodou 6 years, 2 months ago
  3. Making templatetags global to all templates by pryankster 6 years, 1 month ago
  4. Tags & filters for rendering search results by exogen 5 years, 1 month ago
  5. Improved Pickled Object Field by taavi223 3 years, 9 months ago

Comments

(Forgotten your password?)