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, 3 months ago
- sql to dict by amitu 4 years, 3 months ago
- Choices helper by jacobian 3 years, 10 months ago
- Composite Indexing for MySQL by fongandrew 4 years ago
- reorder apps in admin index by reanes 3 years, 6 months ago
Comments