1 2 3 4 | def executesql(query,param):
from django.db import connection
cursor = connection.cursor()
return cursor.execute(query,param)
|
More like this
- sqltojson by amitu 4 years, 2 months ago
- sql to dict by amitu 4 years, 2 months ago
- Choices helper by jacobian 3 years, 9 months ago
- Composite Indexing for MySQL by fongandrew 3 years, 11 months ago
- reorder apps in admin index by reanes 3 years, 5 months ago
Comments