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 …
