Answers for "django connection cursor"

0

raw query in django

from django.db import connection

sql = 'SELECT * FROM db1.a AS a
       JOIN db2.b AS b 
       ON b.some_id = a.id
       WHERE a.name = %s'
cursor = connection.cursor()
try:
      cursor.execute(sql, ['localhost'])
      row = cursor.fetchall()
except Exception as e:
      cursor.close
Posted by: Guest on June-01-2020
0

django connection cursor

from django.db import connection
with connection.cursor() as cursor:
  cursor.execute('TRUNCATE TABLE table_name CASCADE')
Posted by: Guest on April-19-2021

Code answers related to "django connection cursor"

Python Answers by Framework

Browse Popular Code Answers by Language