Installing a Oracle driver on a machine is sometime a pain, or even impossible. Furthermore you may want to distribute self contained scripts that access Oracle without having to ask for additional software installation. Finally, you may want to automate scripts that should run with SQL*Plus.
sqlplus_commando is a pure Python Oracle driver that calls sqlplus on the command line. It was designed so that you may use it by dropping its module in your source tree or even copy its classes in your own source code.
To install sqlplus_commando, you may use one of the following methods:
SqlplusCommando
, OracleResultParser
and OracleErrorParser
from tarball (in file sqlplus_commando/sqlplus_commando.py) and put it in
your own source code.pip install sqlplus_commando
.python setup.py install
.The Apache license grants you a right to use this driver in any of your project (even commercial) provided that you mention that you are using sqlplus_commando in your copyright notice.
You can use this driver in your code just like so:
from sqlplus_commando import SqlplusCommando
sqlplus = SqlplusCommando(hostname='localhost', database='test',
username='test', password='test')
result = sqlplus.run_query("SELECT 42 AS response, 'This is a test' AS question FROM DUAL;")
print result
When query returns nothing (after an INSERT
for instance), method
run_query()
will return an empty tuple ()
. If query returns a result set,
this will be a tuple of dictionaries. For instance, previous sample code could
print:
({'RESPONSE': 42, 'QUESTION': 'This is a test'},)
Instead of running a query you may run a script as follows:
result = sqlplus.run_script('my_script.sql')
You can have values such as %(foo)s
in your query that will be replaced
with corresponding value of the parameters dictionary. For instance:
from sqlplus_commando import SqlplusCommando
sqlplus = SqlplusCommando(hostname='localhost', database='test',
username='test', password='test')
parameters = {'name': 'Reglisse'}
result = sqlplus.run_query(query="SELECT * FROM animals WHERE name=%(name)s",
parameters=parameters)
print result
You may not provide parameters running a script. To do so, call run_query()
with parameters passing query open('my_script.sql').read()
.
sqlplus_commando performs auto casting before returning result sets. As it calls sqlplus on command line, every value in the result set is a string. For convenience, it casts integers, floats, dates and NULL into native Python types.
There are situations where this might not be accurate. For instance, if a column
is of SQL type VARCHAR(10)
and contain phone numbers, all its values will be
casted to Python integers. It should not because phone numbers can start with
0 that would be lost while casted into an integer.
To avoid this, you may pass cast=False
when calling run_query()
or
run_script()
, like so:
from sqlplus_commando import SqlplusCommando
sqlplus = SqlplusCommando(hostname='localhost', database='test',
username='test', password='test')
result = sqlplus.run_query("SELECT phone FROM users WHERE name='bob')", cast=False)
print result
You may also disable casting when instantiating the driver, passing
cast=False
to the constructor. This casting configuration will apply on all
calls to run_query()
or run_script()
except if you pass a different
value while calling these methods.
While running a query or a script with sqlplus, you must add following SQL commands so that the return value is différent from 0 if an error occurs:
WHENEVER SQLERROR EXIT SQL.SQLCODE;
WHENEVER OSERROR EXIT 9;
These lines are added before queries or scripts to run to avoid having to parse the result for error messages. Nevertheless, there are some cases when these lines won't help for error detection. For instance, following query:
BAD SQL QUERY;
This won't result in an error in sqlplus and we must parse the result for the
error string SP2-0734: unknown command
. This is done by default, but you may
avoid this passing parameter check_unknown_command=False
while calling
functions run_query
or run_script
.
Furthermore, a compilation error will result in a warning, thus it is often
necessary to check for warnings in sqlplus output. This is done by default
and will result in an exception, except if you pass check_warning=False
calling run_query
or run_script
.
This module is not intended to replace an genuine Oracle driver that you SHOULD use if you can install it on the target machine.
Enjoy!