django.db.utils.NotSupportedError: Oracle 19 or later is required (found 12.2.0.1.0)

1.1k Views Asked by At

Note: I installed oracle instance for windows

with connections['trdb'].cursor() as cursor:
    cursor.execute(sql)
    row = cursor.fetchall()
    col = cursor.description
    cursor.close
0

There are 0 best solutions below