When I execute query "DESCRIBE ARADMIN.EPM_TechnicianInformation" like below:
connection = cx_Oracle.connect(user=username, password=userpwd, dsn=dsn, encoding="UTF-8")
cursor = connection.cursor()
results = cursor.execute(" DESCRIBE ARADMIN.EPM_TechnicianInformation")
It is giving
DatabaseError: ORA-00900: invalid SQL statement
How can I create query "DESCRIBE ARADMIN.EPM_TechnicianInformation" with cx_Oracle? I want to get column details of the table.
Please help! Thanks!