0

I am new to python and currently writing a module to write error logs into Oracle database. Its not possible to install ODBC libraries on the server for this task so I am wondering what is the best way to handle this without using ODBC (such as pyodbc). I am advised to use ORMs so any of you have some idea about this? I am using python 2.6.5.

Thank you.

2 Answers 2

1

cx_Oracle doesn't use ODBC but you have to install the Oracle client tools.

If the JVM and Jython is an option for you the Oracle Thin Driver for JDBC can be used without ODBC or the client tools.

Sign up to request clarification or add additional context in comments.

Comments

1

There are apparently a number of options, a mere google search away:

http://wiki.python.org/moin/Oracle

My guess is that cx_Oracle is the one you want.

1 Comment

Yea, I found that too. But is there any internal libraries within python that handles such task?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.