sqltojson

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
def sqltojson(query,param):
    from django.utils import simplejson
    from django.db import connection
    cursor = connection.cursor()
    cursor.execute(query,param)
    fieldnames = [name[0] for name in cursor.description]
    result = []
    for row in cursor.fetchall():
        rowset = []
        for field in zip(fieldnames, row):
            rowset.append(field)
        result.append(dict(rowset))
    return simplejson.dumps(result)

More like this

  1. . by jeremydw 1 year, 9 months ago
  2. default url routing and shortcut by vicalloy 2 years, 11 months ago
  3. watermark by dingdongquan 1 year, 5 months ago
  4. madslug by catellar 9 months ago
  5. Templatetag to manage GET arguments in template by DimmuR 1 year, 6 months ago

Comments

(Forgotten your password?)