Linked Questions

Popular Questions

Django Cannot find cursor object in connection object

Asked by At

I am developing a web application using django. I am new Django. I have call a stored procedure from my application. I gone through the django documentation and i found out that using cursor object i can call the procedure. But i cannot find the cursor object in connection object.

This is how my code looks like :

from django.db import connection

cursor = connection.cursor()

But i cannot find cursor object itself in the connection.

Please help me out where i am going wrong.

Related Questions