1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # custom query function:
def csql(self,query,qkeys):
from django.db import connection
cursor = connection.cursor()
cursor.execute(query)
rows = cursor.fetchall()
# build dict for template:
fdicts = []
for row in rows:
i = 0
cur_row = {}
for key in qkeys:
cur_row[key] = row[i]
i = i+1
fdicts.append(cur_row)
return fdicts
|
More like this
- View decorator to automate templates. by jafo 2 years, 3 months ago
- Last.fm Charts by sedden 3 years, 10 months ago
- table with n items per row using custom modulo tag by elgreengeeto 3 years, 5 months ago
- Additional Change List Columns by sansmojo 4 years, 10 months ago
- Yet another SQL debugging facility by miracle2k 4 years, 9 months ago
Comments