1 2 3 4 | def executesql(query,param):
from django.db import connection
cursor = connection.cursor()
return cursor.execute(query,param)
|
More like this
- print SQL statements by zuzelvp 2 years, 3 months ago
- sql to dict by amitu 3 years, 2 months ago
- Drop all tables in MySQL database by mpasternacki 2 years, 3 months ago
- SQL Function Decorator by proc 3 years, 9 months ago
- by mikko 5 years ago
Comments