I am trying to connect to the database via Python ? I use oracle with the sqldevolper and have no problems there, but now when connecting between oracle and python the problem appears. When I try to connect, I get the following error :
cx_Oracle.DatabaseError: ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
I tried the script with spyder:
import cx_Oracle
con = cx_Oracle.connect(
user="abc",
password ="pass",
dsn="....")