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
- sql to dict by amitu 4 years, 3 months ago
- executesql by amitu 4 years, 3 months ago
- JsonResponse by zakj 6 years, 2 months ago
- Dom ID by bmihelac 3 years, 7 months ago
- create_logger helper by amitu 4 years, 3 months ago
Comments