2
votes
What is the best way to access stored procedures in Django’s ORM.
You have to use the connection utility in Django:
from django.db import connection
cursor = connection.cursor()
cursor.execute("SQL STATEMENT CAN BE ANYTHING")
th …
-1
votes
How to limit the maximum value of a numeric field in a Django model?
You could create a pre-save signal:
http://docs.djangoproject.com/en/dev/ref/ …
