About 109,000 results
Open links in new tab
  1. How to connect Python to Oracle using oracledb - Stack Overflow

    Nov 1, 2023 · Check the examples and content in the python-oracledb user manual: Connecting to Oracle Database. In particular see JDBC and Oracle SQL Developer Connection Strings.

  2. How can I access Oracle from Python? - Stack Overflow

    Aug 19, 2010 · How can I access Oracle from Python? I have downloaded a cx_Oracle msi installer, but Python can't import the library. I get the following error: import cx_Oracle …

  3. python - how do you connect to oracle using pyodbc - Stack …

    The latest version of cx_Oracle was renamed to python-oracledb, see the release announcement. Usage is the same as above. Install instructions are here. Compared with pyodbc, the python …

  4. Connecting to an Oracle database using SQLAlchemy

    I am able to successfully connect to a SQLite database and access a particular table using the set of commands below: from sqlalchemy import create_engine, MetaData, Table, and_ from …

  5. python - Connect with Oracle Database via LDAP Authentication

    Jul 9, 2021 · I am using python's pyodbc library to connect with the Oracle Database. The authentication to my non-prod servers were set-up as Basic Authentication so my connection …

  6. Connecting to remote Oracle database using Python

    Nov 18, 2019 · 0 I am trying to connect to a remote Oracle database using Python. I am able to access the database directly using DBeaver and I have copied the parameters in the Python …

  7. Python connect to JDBC thin custom url Oracle - Stack Overflow

    Sep 30, 2020 · Here's the cx_Oracle doc on mapping from JDBC connection strings: JDBC and Oracle SQL Developer Connection Strings Try without the '@' you showed: dsn = …

  8. cx_Oracle & Connecting to Oracle DB Remotely - Stack Overflow

    This works for me using cx_Oracle-5.1.3-11g.win32-py2.7 and connecting to oracle 10g where as user/pass@host:port/dbname always fails. thank you.

  9. Connecting Python to an Oracle Database via pyodbc

    Nov 24, 2022 · I am trying to use pyodbc to connect to an oracle database. Below the Python code I have developed: import pyodbc conn=pyodbc.connect('DRIVER={Oracle in …

  10. python - cx_Oracle doesn't connect when using SID instead of …

    Using Oracle Service Names with SQLAlachemy Oracle SID and Service name; connection problems cx_Oracle & Connecting to Oracle DB Remotely What is the proper way to connect …