Oracle
Support for the Oracle database.
Oracle version 8 through current (11g at the time of this writing) are supported.
For information on connecting via specific drivers, see the documentation
for that driver.
Connect Arguments
The dialect supports several create_engine() arguments which
affect the behavior of the dialect regardless of driver in use.
- use_ansi - Use ANSI JOIN constructs (see the section on Oracle 8). Defaults
to True. If False, Oracle-8 compatible constructs are used for joins.
- optimize_limits - defaults to False. see the section on LIMIT/OFFSET.
Auto Increment Behavior
SQLAlchemy Table objects which include integer primary keys are usually assumed to have
“autoincrementing” behavior, meaning they can generate their own primary key values upon
INSERT. Since Oracle has no “autoincrement” feature, SQLAlchemy relies upon sequences
to produce these values. With the Oracle dialect, a sequence must always be explicitly
specified to enable autoincrement. This is divergent with the majority of documentation
examples which assume the usage of an autoincrement-capable database. To specify sequences,
use the sqlalchemy.schema.Sequence object which is passed to a Column construct:
t = Table('mytable', metadata,
Column('id', Integer, Sequence('id_seq'), primary_key=True),
Column(...), ...
)
This step is also required when using table reflection, i.e. autoload=True:
t = Table('mytable', metadata,
Column('id', Integer, Sequence('id_seq'), primary_key=True),
autoload=True
)
Identifier Casing
In Oracle, the data dictionary represents all case insensitive identifier names
using UPPERCASE text. SQLAlchemy on the other hand considers an all-lower case identifier
name to be case insensitive. The Oracle dialect converts all case insensitive identifiers
to and from those two formats during schema level communication, such as reflection of
tables and indexes. Using an UPPERCASE name on the SQLAlchemy side indicates a
case sensitive identifier, and SQLAlchemy will quote the name - this will cause mismatches
against data dictionary data received from Oracle, so unless identifier names have been
truly created as case sensitive (i.e. using quoted names), all lowercase names should be
used on the SQLAlchemy side.
Unicode
SQLAlchemy 0.6 uses the “native unicode” mode provided as of cx_oracle 5. cx_oracle 5.0.2
or greater is recommended for support of NCLOB. If not using cx_oracle 5, the NLS_LANG
environment variable needs to be set in order for the oracle client library to use
proper encoding, such as “AMERICAN_AMERICA.UTF8”.
Also note that Oracle supports unicode data through the NVARCHAR and NCLOB data types.
When using the SQLAlchemy Unicode and UnicodeText types, these DDL types will be used
within CREATE TABLE statements. Usage of VARCHAR2 and CLOB with unicode text still
requires NLS_LANG to be set.
LIMIT/OFFSET Support
Oracle has no support for the LIMIT or OFFSET keywords. Whereas previous versions of SQLAlchemy
used the “ROW NUMBER OVER...” construct to simulate LIMIT/OFFSET, SQLAlchemy 0.5 now uses
a wrapped subquery approach in conjunction with ROWNUM. The exact methodology is taken from
http://www.oracle.com/technology/oramag/oracle/06-sep/o56asktom.html . Note that the
“FIRST ROWS()” optimization keyword mentioned is not used by default, as the user community felt
this was stepping into the bounds of optimization that is better left on the DBA side, but this
prefix can be added by enabling the optimize_limits=True flag on create_engine().
ON UPDATE CASCADE
Oracle doesn’t have native ON UPDATE CASCADE functionality. A trigger based solution
is available at http://asktom.oracle.com/tkyte/update_cascade/index.html .
When using the SQLAlchemy ORM, the ORM has limited ability to manually issue
cascading updates - specify ForeignKey objects using the
“deferrable=True, initially=’deferred’” keyword arguments,
and specify “passive_updates=False” on each relationship().
Oracle 8 Compatibility
When Oracle 8 is detected, the dialect internally configures itself to the following
behaviors:
- the use_ansi flag is set to False. This has the effect of converting all
JOIN phrases into the WHERE clause, and in the case of LEFT OUTER JOIN
makes use of Oracle’s (+) operator.
- the NVARCHAR2 and NCLOB datatypes are no longer generated as DDL when
the Unicode is used - VARCHAR2 and CLOB are issued
instead. This because these types don’t seem to work correctly on Oracle 8
even though they are available. The NVARCHAR
and NCLOB types will always generate NVARCHAR2 and NCLOB.
- the “native unicode” mode is disabled when using cx_oracle, i.e. SQLAlchemy
encodes all Python unicode objects to “string” before passing in as bind parameters.
Synonym/DBLINK Reflection
When using reflection with Table objects, the dialect can optionally search for tables
indicated by synonyms that reference DBLINK-ed tables by passing the flag
oracle_resolve_synonyms=True as a keyword argument to the Table construct. If DBLINK
is not in use this flag should be left off.
Oracle Column Types
In addition to those types at Column and Data Types, datatypes specific to the
Oracle dialect include those listed here.
-
class sqlalchemy.dialects.oracle.base.BFILE(length=None)
Bases: sqlalchemy.types.LargeBinary
-
__init__(length=None)
Construct a LargeBinary type.
Parameters: |
- length – optional, a length for the column for use in
DDL statements, for those BLOB types that accept a length
(i.e. MySQL). It does not produce a small BINARY/VARBINARY
type - use the BINARY/VARBINARY types specifically for those.
May be safely omitted if no CREATE
TABLE will be issued. Certain databases may require a
length for use in DDL, and will raise an exception when
the CREATE TABLE DDL is issued.
|
-
class sqlalchemy.dialects.oracle.base.DOUBLE_PRECISION(precision=None, scale=None, asdecimal=None)
Bases: sqlalchemy.types.Numeric
-
__init__(precision=None, scale=None, asdecimal=None)
-
class sqlalchemy.dialects.oracle.base.INTERVAL(day_precision=None, second_precision=None)
Bases: sqlalchemy.types.TypeEngine
-
__init__(day_precision=None, second_precision=None)
Construct an INTERVAL.
Note that only DAY TO SECOND intervals are currently supported.
This is due to a lack of support for YEAR TO MONTH intervals
within available DBAPIs (cx_oracle and zxjdbc).
Parameters: |
- day_precision – the day precision value. this is the number of digits
to store for the day field. Defaults to “2”
- second_precision – the second precision value. this is the number of digits
to store for the fractional seconds field. Defaults to “6”.
|
-
class sqlalchemy.dialects.oracle.base.NCLOB(length=None, convert_unicode=False, assert_unicode=None, unicode_error=None, _warn_on_bytestring=False)
Bases: sqlalchemy.types.Text
-
__init__(length=None, convert_unicode=False, assert_unicode=None, unicode_error=None, _warn_on_bytestring=False)
Create a string-holding type.
Parameters: |
- length – optional, a length for the column for use in
DDL statements. May be safely omitted if no CREATE
TABLE will be issued. Certain databases may require a
length for use in DDL, and will raise an exception when
the CREATE TABLE DDL is issued. Whether the value is
interpreted as bytes or characters is database specific.
- convert_unicode –
defaults to False. If True, the
type will do what is necessary in order to accept
Python Unicode objects as bind parameters, and to return
Python Unicode objects in result rows. This may
require SQLAlchemy to explicitly coerce incoming Python
unicodes into an encoding, and from an encoding
back to Unicode, or it may not require any interaction
from SQLAlchemy at all, depending on the DBAPI in use.
When SQLAlchemy performs the encoding/decoding,
the encoding used is configured via
encoding, which
defaults to utf-8.
The “convert_unicode” behavior can also be turned on
for all String types by setting
sqlalchemy.engine.base.Dialect.convert_unicode
on create_engine().
To instruct SQLAlchemy to perform Unicode encoding/decoding
even on a platform that already handles Unicode natively,
set convert_unicode=’force’. This will incur significant
performance overhead when fetching unicode result columns.
- assert_unicode – Deprecated. A warning is raised in all cases when a non-Unicode
object is passed when SQLAlchemy would coerce into an encoding
(note: but not when the DBAPI handles unicode objects natively).
To suppress or raise this warning to an
error, use the Python warnings filter documented at:
http://docs.python.org/library/warnings.html
- unicode_error – Optional, a method to use to handle Unicode
conversion errors. Behaves like the ‘errors’ keyword argument to
the standard library’s string.decode() functions. This flag
requires that convert_unicode is set to “force” - otherwise,
SQLAlchemy is not guaranteed to handle the task of unicode
conversion. Note that this flag adds significant performance
overhead to row-fetching operations for backends that already
return unicode objects natively (which most DBAPIs do). This
flag should only be used as an absolute last resort for reading
strings from a column with varied or corrupted encodings,
which only applies to databases that accept invalid encodings
in the first place (i.e. MySQL. not PG, Sqlite, etc.)
|
-
class sqlalchemy.dialects.oracle.base.NUMBER(precision=None, scale=None, asdecimal=None)
Bases: sqlalchemy.types.Numeric, sqlalchemy.types.Integer
-
__init__(precision=None, scale=None, asdecimal=None)
-
class sqlalchemy.dialects.oracle.base.LONG(length=None, convert_unicode=False, assert_unicode=None, unicode_error=None, _warn_on_bytestring=False)
Bases: sqlalchemy.types.Text
-
__init__(length=None, convert_unicode=False, assert_unicode=None, unicode_error=None, _warn_on_bytestring=False)
Create a string-holding type.
Parameters: |
- length – optional, a length for the column for use in
DDL statements. May be safely omitted if no CREATE
TABLE will be issued. Certain databases may require a
length for use in DDL, and will raise an exception when
the CREATE TABLE DDL is issued. Whether the value is
interpreted as bytes or characters is database specific.
- convert_unicode –
defaults to False. If True, the
type will do what is necessary in order to accept
Python Unicode objects as bind parameters, and to return
Python Unicode objects in result rows. This may
require SQLAlchemy to explicitly coerce incoming Python
unicodes into an encoding, and from an encoding
back to Unicode, or it may not require any interaction
from SQLAlchemy at all, depending on the DBAPI in use.
When SQLAlchemy performs the encoding/decoding,
the encoding used is configured via
encoding, which
defaults to utf-8.
The “convert_unicode” behavior can also be turned on
for all String types by setting
sqlalchemy.engine.base.Dialect.convert_unicode
on create_engine().
To instruct SQLAlchemy to perform Unicode encoding/decoding
even on a platform that already handles Unicode natively,
set convert_unicode=’force’. This will incur significant
performance overhead when fetching unicode result columns.
- assert_unicode – Deprecated. A warning is raised in all cases when a non-Unicode
object is passed when SQLAlchemy would coerce into an encoding
(note: but not when the DBAPI handles unicode objects natively).
To suppress or raise this warning to an
error, use the Python warnings filter documented at:
http://docs.python.org/library/warnings.html
- unicode_error – Optional, a method to use to handle Unicode
conversion errors. Behaves like the ‘errors’ keyword argument to
the standard library’s string.decode() functions. This flag
requires that convert_unicode is set to “force” - otherwise,
SQLAlchemy is not guaranteed to handle the task of unicode
conversion. Note that this flag adds significant performance
overhead to row-fetching operations for backends that already
return unicode objects natively (which most DBAPIs do). This
flag should only be used as an absolute last resort for reading
strings from a column with varied or corrupted encodings,
which only applies to databases that accept invalid encodings
in the first place (i.e. MySQL. not PG, Sqlite, etc.)
|
-
class sqlalchemy.dialects.oracle.base.RAW(length=None)
Bases: sqlalchemy.types.LargeBinary
-
__init__(length=None)
Construct a LargeBinary type.
Parameters: |
- length – optional, a length for the column for use in
DDL statements, for those BLOB types that accept a length
(i.e. MySQL). It does not produce a small BINARY/VARBINARY
type - use the BINARY/VARBINARY types specifically for those.
May be safely omitted if no CREATE
TABLE will be issued. Certain databases may require a
length for use in DDL, and will raise an exception when
the CREATE TABLE DDL is issued.
|
cx_Oracle Notes
Support for the Oracle database via the cx_oracle driver.
Driver
The Oracle dialect uses the cx_oracle driver, available at
http://cx-oracle.sourceforge.net/ . The dialect has several behaviors
which are specifically tailored towards compatibility with this module.
Version 5.0 or greater is strongly recommended, as SQLAlchemy makes
extensive use of the cx_oracle output converters for numeric and
string conversions.
Connecting
Connecting with create_engine() uses the standard URL approach of
oracle://user:pass@host:port/dbname[?key=value&key=value...]. If dbname is present, the
host, port, and dbname tokens are converted to a TNS name using the cx_oracle
makedsn() function. Otherwise, the host token is taken directly as a TNS name.
Additional arguments which may be specified either as query string arguments on the
URL, or as keyword arguments to create_engine() are:
- allow_twophase - enable two-phase transactions. Defaults to True.
- arraysize - set the cx_oracle.arraysize value on cursors, in SQLAlchemy
it defaults to 50. See the section on “LOB Objects” below.
- auto_convert_lobs - defaults to True, see the section on LOB objects.
- auto_setinputsizes - the cx_oracle.setinputsizes() call is issued for all bind parameters.
This is required for LOB datatypes but can be disabled to reduce overhead. Defaults
to True.
- mode - This is given the string value of SYSDBA or SYSOPER, or alternatively an
integer value. This value is only available as a URL query string argument.
- threaded - enable multithreaded access to cx_oracle connections. Defaults
to True. Note that this is the opposite default of cx_oracle itself.
Unicode
cx_oracle 5 fully supports Python unicode objects. SQLAlchemy will pass
all unicode strings directly to cx_oracle, and additionally uses an output
handler so that all string based result values are returned as unicode as well.
Note that this behavior is disabled when Oracle 8 is detected, as it has been
observed that issues remain when passing Python unicodes to cx_oracle with Oracle 8.
LOB Objects
cx_oracle returns oracle LOBs using the cx_oracle.LOB object. SQLAlchemy converts
these to strings so that the interface of the Binary type is consistent with that of
other backends, and so that the linkage to a live cursor is not needed in scenarios
like result.fetchmany() and result.fetchall(). This means that by default, LOB
objects are fully fetched unconditionally by SQLAlchemy, and the linkage to a live
cursor is broken.
To disable this processing, pass auto_convert_lobs=False to create_engine().
Two Phase Transaction Support
Two Phase transactions are implemented using XA transactions. Success has been reported
with this feature but it should be regarded as experimental.
zxjdbc Notes
Support for the Oracle database via the zxjdbc JDBC connector.