Construct an object holding a binary (long) string value.
Return the version of the client library being used as a 5-tuple. The five values are the major version, minor version, update number, patch number and port update number.
Note
This method is an extension to the DB API definition and is only available in Oracle 10g Release 2 and higher.
Constructor for creating a connection to the database. Return a Connection object (Connection Object). All arguments are optional and can be specified as keyword parameters.
The dsn (data source name) is the TNS entry (from the Oracle names server or tnsnames.ora file) or is a string like the one returned from makedsn(). If only one parameter is passed, a connect string is assumed which is to be of the format user/password@dsn, the same format accepted by Oracle applications such as SQL*Plus.
If the mode is specified, it must be one of SYSDBA or SYSOPER which are defined at the module level; otherwise it defaults to the normal mode of connecting.
If the handle is specified, it must be of type OCISvcCtx* and is only of use when embedding Python in an application (like PowerBuilder) which has already made the connection.
The pool argument is expected to be a session pool object (SessionPool Object) and the use of this argument is the equivalent of calling pool.acquire().
The threaded argument is expected to be a boolean expression which indicates whether or not Oracle should use the mode OCI_THREADED to wrap accesses to connections with a mutex. Doing so in single threaded applications imposes a performance penalty of about 10-15% which is why the default is False.
The twophase argument is expected to be a boolean expression which indicates whether or not the attributes should be set on the connection object to allow for two phase commit. The default for this value is also False because of bugs in Oracle prior to Oracle 10g.
The events argument is expected to be a boolean expression which indicates whether or not to initialize Oracle in events mode (only available in Oracle 11g and higher).
The cclass argument is expected to be a string and defines the connection class for database resident connection pooling (DRCP) in Oracle 11g and higher.
The purity argument is expected to be one of ATTR_PURITY_NEW (the session must be new without any prior session state), ATTR_PURITY_SELF (the session may have been used before) or ATTR_PURITY_DEFAULT (the default behavior which is defined by Oracle in its documentation). This argument is only relevant in Oracle 11g and higher.
The newpassword argument is expected to be a string if specified and sets the password for the logon during the connection process.
Constructor for creating a cursor. Return a new Cursor object (Cursor Object) using the connection.
Note
This method is an extension to the DB API definition.
Construct an object holding a date value.
Construct an object holding a date value from the given ticks value (number of seconds since the epoch; see the documentation of the standard Python time module for details).
Return a string suitable for use as the dsn for the connect() method. This string is identical to the strings that are defined by the Oracle names server or defined in the tnsnames.ora file. If you wish to use the service name instead of the sid, do not include a value for the parameter sid and use the keyword parameter service_name instead.
Note
This method is an extension to the DB API definition.
Create a session pool (see Oracle 9i documentation for more information) and return a session pool object (SessionPool Object). This allows for very fast connections to the database and is of primary use in a server where the same connection is being made multiple times in rapid succession (a web server, for example). If the connection type is specified, all calls to acquire() will create connection objects of that type, rather than the base type defined at the module level. The threaded attribute is expected to be a boolean expression which indicates whether or not Oracle should use the mode OCI_THREADED to wrap accesses to connections with a mutex. Doing so in single threaded applications imposes a performance penalty of about 10-15% which is why the default is False.
Note
This method is an extension to the DB API definition and is only available in Oracle 9i.
Construct an object holding a time value.
Construct an object holding a time value from the given ticks value (number of seconds since the epoch; see the documentation of the standard Python time module for details).
Construct an object holding a time stamp value.
Construct an object holding a time stamp value from the given ticks value (number of seconds since the epoch; see the documentation of the standard Python time module for details).
String constant stating the supported DB API level. Currently ‘2.0’.
String constant stating the time when the binary was built.
Note
This constant is an extension to the DB API definition.
String constant stating the type of parameter marker formatting expected by the interface. Currently ‘named’ as in ‘where name = :name’.
Value to be passed to the connect() method which indicates that SYSDBA access is to be acquired. See the Oracle documentation for more details.
Note
This constant is an extension to the DB API definition.
Value to be passed to the connect() method which indicates that SYSOPER access is to be acquired. See the Oracle documentation for more details.
Note
This constant is an extension to the DB API definition.
Integer constant stating the level of thread safety that the interface supports. Currently 2, which means that threads may share the module and connections, but not cursors. Sharing means that a thread may use a resource without wrapping it using a mutex semaphore to implement resource locking.
Note that in order to make use of multiple threads in a program which intends to connect and disconnect in different threads, the threaded argument to the Connection constructor must be a true value. See the comments on the Connection constructor for more information (Module Interface).
String constant stating the version of the module. Currently ‘5.1.2‘.
Note
This attribute is an extension to the DB API definition.
Note
These constants are extensions to the DB API definition.
This constant is used to register callbacks on the OCIBindByName() function of the OCI.
This constant is used to register callbacks on the OCIBindByPos() function of the OCI.
This constant is used to register callbacks on the OCIDefineByPos() function of the OCI.
This constant is used to register callbacks on the OCIStmtExecute() function of the OCI.
This constant is used to register callbacks on the OCIStmtFetch() function of the OCI.
This constant is used to register callbacks on the OCIStmtPrepare() function of the OCI.
This constant is used to register callbacks on entry to the function of the OCI. In other words, the callback will be called prior to the execution of the OCI function.
This constant is used to register callbacks on exit from the function of the OCI. In other words, the callback will be called after the execution of the OCI function.
This constant is used to register callbacks that completely replace the call to the OCI function.
Note
These constants are extensions to the DB API definition.
This constant is a possible value for the type of a message and indicates that the subscription object has been deregistered.
This constant is a possible value for the type of a message and provides no additional information about the event.
This constant is a possible value for the type of a message and indicates that an object change of some sort has taken place.
This constant is a possible value for the type of a message and indicates that the instance is in the process of being shut down.
This constant is a possible value for the type of a message and indicates that any instance (when running RAC) is in the process of being shut down.
This constant is a possible value for the type of a message and indicates that the instance is in the process of being started up.
This constant is the default value when creating a subscription and specifies that messages are to be sent for all operations.
This constant is a possible value for the operation attribute of one of the table objects that are part of a message. It specifies that the table has been completely invalidated.
This constant is a possible value for the operation attribute of one of the table objects that are part of a message. It specifies that the table has been altered in some fashion using DDL.
This constant can be used when creating a subscription and specifies that messages are to be sent only when data is deleted. It is also a possible value for the operation attribute of one of the table objects that are part of a message.
This constant is a possible value for the operation attribute of one of the table objects that are part of a message. It specifies that the table has been dropped.
This constant can be used when creating a subscription and specifies that messages are to be sent only when data is inserted. It is also a possible value for the operation attribute of one of the table objects that are part of a message.
This constant can be used when creating a subscription and specifies that messages are to be sent only when data is updated. It is also a possible value for the operation attribute of one of the table objects that are part of a message.
This constant is the default (and currently only) value for the namespace argument when creating a subscription.
This constant is a future possible value for the protocol argument when creating a subscription. It specifies that notification will be sent to the HTTP URL when a message is generated.
This constant is a future possible value for the protocol argument when creating a subscription. It specifies that an e-mail message should be sent to the target when a message is generated.
This constant is the default (and currently only valid) value for the protocol argument when creating a subscription.
This constant is a future possible value for the protocol argument when creating a subscription. It specifies that the database procedure will be invoked when a message is generated.
Note
These constants are extensions to the DB API definition.
This constant is used when using database resident connection pooling (DRCP) and specifies that the purity of the session is the default value used by Oracle (see Oracle’s documentation for more information).
This constant is used when using database resident connection pooling (DRCP) and specifies that the session acquired from the pool should be new and not have any prior session state.
This constant is used when using database resident connection pooling (DRCP) and specifies that the session acquired from the pool need not be new and may have prior session state.
Note
These constants are extensions to the DB API definition.
This constant is used to define the preliminary authentication mode required for performing database startup and shutdown.
This constant is used in database shutdown to indicate that the program should not wait for current calls to complete or for users to disconnect from the database. Use only in unusual circumstances since database recovery may be necessary upon next startup.
This constant is used in database shutdown to indicate that the instance can be truly halted. This should only be done after the database has been shut down in one of the other modes (except abort) and the database has been closed and dismounted using the appropriate SQL commands. See the method shutdown() in the section on connections (Connection Object).
This constant is used in database shutdown to indicate that all uncommitted transactions should be rolled back and any connected users should be disconnected.
This constant is used in database shutdown to indicate that further connections should be prohibited and no new transactions should be allowed. It then waits for active transactions to complete.
This constant is used in database shutdown to indicate that further connections should be prohibited and no new transactions should be allowed. It then waits for only local active transactions to complete.
Note
These constants are extensions to the DB API definition.
This constant is used to define the “get” mode on session pools and indicates that a new connection will be returned if there are no free sessions available in the pool.
This constant is used to define the “get” mode on session pools and indicates that an exception is raised if there are no free sessions available in the pool.
This constant is used to define the “get” mode on session pools and indicates that the acquisition of a connection waits until a session is freed if there are no free sessions available in the pool.
This type object is used to describe columns in a database that are binary (in Oracle this is RAW columns).
This type object is used to describe columns in a database that are BFILEs.
Note
This type is an extension to the DB API definition.
This type object is used to describe columns in a database that are BLOBs.
Note
This type is an extension to the DB API definition.
This type object is used to describe columns in a database that are CLOBs.
Note
This type is an extension to the DB API definition.
This type object is used to describe columns in a database that are cursors (in PL/SQL these are known as ref cursors).
Note
This type is an extension to the DB API definition.
This type object is used to describe columns in a database that are dates.
This type object is used to describe columns in a database that are fixed length strings (in Oracle this is CHAR columns); these behave differently in Oracle than varchar2 so they are differentiated here even though the DB API does not differentiate them.
Note
This attribute is an extension to the DB API definition.
This type object is used to describe columns in a database that are fixed length unicode strings (in Oracle this is NCHAR columns); these behave differently in Oracle than nvarchar2 so they are differentiated here even though the DB API does not differentiate them.
Note
This type is an extension to the DB API definition and is only available in Python 2.x. In Python 3.x these types of columns are returned as FIXED_CHAR.
This type object is used to describe columns in a database that are of type interval day to second.
Note
This type is an extension to the DB API definition.
This type object is the Python type of BLOB and CLOB data that is returned from cursors.
Note
This type is an extension to the DB API definition.
This type object is used to describe columns in a database that are long binary (in Oracle these are LONG RAW columns).
Note
This type is an extension to the DB API definition.
This type object is used to describe columns in a database that are long strings (in Oracle these are LONG columns).
Note
This type is an extension to the DB API definition.
This type object is used to describe columns in a database that are long strings (in Oracle these are LONG columns). There is no direct support for this in Oracle but long unicode strings are bound this way in order to avoid the “unimplemented or unreasonable conversion requested” error.
Note
This type is an extension to the DB API definition.
This type object is used to describe columns in a database that are of type binary_double or binary_float and is only available in Oracle 10g.
Note
This type is an extension to the DB API definition.
This type object is used to describe columns in a database that are NCLOBs.
Note
This type is an extension to the DB API definition.
This type object is used to describe columns in a database that are numbers.
This type object is used to describe columns in a database that are objects.
Note
This type is an extension to the DB API definition.
This type object is used to describe the pseudo column “rowid”.
This type object is used to describe columns in a database that are strings (in Oracle this is VARCHAR2 columns).
This type object is used to describe columns in a database that are timestamps.
Note
This attribute is an extension to the DB API definition and is only available in Oracle 9i.
This type object is used to describe columns in a database that are unicode (in Oracle this is NVARCHAR2 columns).
Note
This type is an extension to the DB API definition and is only available in Python 2.x. In Python 3.x these types of columns are returned as STRING.
Exception raised for important warnings and defined by the DB API but not actually used by cx_Oracle.
Exception that is the base class of all other exceptions defined by cx_Oracle and is a subclass of the Python StandardError exception (defined in the module exceptions).
Exception raised for errors that are related to the database interface rather than the database itself. It is a subclass of Error.
Exception raised for errors that are related to the database. It is a subclass of Error.
Exception raised for errors that are due to problems with the processed data. It is a subclass of DatabaseError.
Exception raised for errors that are related to the operation of the database but are not necessarily under the control of the progammer. It is a subclass of DatabaseError.
Exception raised when the relational integrity of the database is affected. It is a subclass of DatabaseError.
Exception raised when the database encounters an internal error. It is a subclass of DatabaseError.
Exception raised for programming errors. It is a subclass of DatabaseError.
Exception raised when a method or database API was used which is not supported by the database. It is a subclass of DatabaseError.
Note
PEP 249 (Python Database API Specification v2.0) says the following about exception values:
[...] The values of these exceptions are not defined. They should give the user a fairly good idea of what went wrong, though. [...]
With cx_Oracle every exception object has exactly one argument in the args tuple. This argument is a cx_Oracle._Error object which has the following three read-only attributes.
Integer attribute representing the Oracle error number (ORA-XXXXX).
Integer attribute representing the error offset when applicable.
String attribute representing the Oracle message of the error. This message is localized by the environment of the Oracle connection.
String attribute representing the context in which the exception was raised..
This allows you to use the exceptions for example in the following way:
import sys
import cx_Oracle
connection = cx_Oracle.Connection("user/pw@tns")
cursor = connection.cursor()
try:
cursor.execute("select 1 / 0 from dual")
except cx_Oracle.DatabaseError, exc:
error, = exc.args
print >> sys.stderr, "Oracle-Error-Code:", error.code
print >> sys.stderr, "Oracle-Error-Message:", error.message