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 1 year, 12 months ago
- sql to dict by amitu 2 years, 10 months ago
- Drop all tables in MySQL database by mpasternacki 2 years ago
- SQL Function Decorator by proc 3 years, 5 months ago
- by mikko 4 years, 9 months ago
Comments