Skip to content Skip to sidebar Skip to footer
Showing posts with the label Oracle

Using Sqlalchemy Dburi With Oracle Using External Password Store?

I am trying to get a oracle sqlalchemy dburi working with an external password store (Oracle Wallet… Read more Using Sqlalchemy Dburi With Oracle Using External Password Store?

Cx_oracle - Dll Load Failed: %1 Is Not A Valid Win32 Application. Python

I have: win 7 (64 bit) python 3.4 oracle 64 bit After I downloaded and installed from here the c… Read more Cx_oracle - Dll Load Failed: %1 Is Not A Valid Win32 Application. Python

In Clause For Oracle Prepared Statement In Python Cx_oracle

I'd like to use the IN clause with a prepared Oracle statement using cx_Oracle in Python. E.g. … Read more In Clause For Oracle Prepared Statement In Python Cx_oracle

Extract Data From User Defined Type Via Cx_oracle

I am trying to extract data from User defined type (UDT) via cx_Oracle. Here is the UDT structure: … Read more Extract Data From User Defined Type Via Cx_oracle

Set Database Connection Timeout In Python

I'm creating a RESTful API which needs to access the database. I'm using Restish, Oracle, … Read more Set Database Connection Timeout In Python

Python: Connecting To An Oracle Database Using Oracle's Wallet/tnsnames

So I can connect to an Oracle database as such: import cx_Oracle as ora dsnStr = ora.makedsn(host=… Read more Python: Connecting To An Oracle Database Using Oracle's Wallet/tnsnames

Loading Dataframe From Pandas To Sql For Oracle Yields And Error - Ora-00911: Invalid Character

I am attempting to load a dataframe from Pandas to Oracle. I can read_sql just fine, but df.to_sql … Read more Loading Dataframe From Pandas To Sql For Oracle Yields And Error - Ora-00911: Invalid Character

Sharing An Oracle Database Connection Between Simultaneous Celery Tasks

I'm working with Python2.7, Celery and cx_Oracle to access the Oracle database. I create a lot … Read more Sharing An Oracle Database Connection Between Simultaneous Celery Tasks