psycopg2/doc/extensions.rst

397 lines
12 KiB
ReStructuredText
Raw Normal View History

2010-02-10 00:31:40 +03:00
:mod:`psycopg2.extensions` -- Extensions to the DB API
======================================================
2005-10-19 16:54:51 +04:00
.. sectionauthor:: Daniele Varrazzo <daniele.varrazzo@gmail.com>
2005-10-19 16:54:51 +04:00
.. module:: psycopg2.extensions
2005-10-19 16:54:51 +04:00
The module contains a few objects and function extending the minimum set of
2010-02-11 06:15:14 +03:00
functionalities defined by the |DBAPI|_.
2005-11-19 14:23:18 +03:00
2005-10-19 16:54:51 +04:00
.. class:: connection
2005-10-19 16:54:51 +04:00
2010-02-11 06:15:14 +03:00
Is the class usually returned by the :func:`~psycopg2.connect` function.
It is exposed by the :mod:`extensions` module in order to allow
subclassing to extend its behaviour: the subclass should be passed to the
2010-02-11 06:15:14 +03:00
:func:`!connect` function using the :obj:`!connection_factory` parameter.
See also :ref:`subclassing-connection`.
2006-01-10 19:13:37 +03:00
For a complete description of the class, see :class:`connection`.
2006-01-12 20:41:00 +03:00
.. class:: cursor
2006-01-12 20:41:00 +03:00
2010-02-11 06:15:14 +03:00
It is the class usually returnded by the :meth:`connection.cursor`
method. It is exposed by the :mod:`extensions` module in order to allow
subclassing to extend its behaviour: the subclass should be passed to the
2010-02-11 06:15:14 +03:00
:meth:`!cursor` method using the :obj:`!cursor_factory` parameter. See
also :ref:`subclassing-cursor`.
2006-01-12 20:41:00 +03:00
For a complete description of the class, see :class:`cursor`.
2006-01-12 20:41:00 +03:00
.. todo:: row factories
2006-01-12 20:41:00 +03:00
.. class:: lobject
2005-10-19 16:54:51 +04:00
.. todo:: class lobject
2005-10-19 16:54:51 +04:00
.. _sql-adaptation-objects:
SQL adaptation protocol objects
-------------------------------
Psycopg provides a flexible system to adapt Python objects to the SQL syntax
(inspired to the :pep:`246`), allowing serialization in PostgreSQL. See
:ref:`adapting-new-types` for a detailed description. The following objects
deal with Python objects adaptation:
.. function:: adapt(obj)
Return the SQL representation of :obj:`obj` as a string. Raise a
2010-02-11 06:15:14 +03:00
:exc:`~psycopg2.ProgrammingError` if how to adapt the object is unknown.
In order to allow new objects to be adapted, register a new adapter for it
using the :func:`register_adapter` function.
The function is the entry point of the adaptation mechanism: it can be
used to write adapters for complex objects by recursively calling
2010-02-11 06:15:14 +03:00
:func:`!adapt` on its components.
.. function:: register_adapter(class, adapter)
Register a new adapter for the objects of class :data:`class`.
:data:`adapter` should be a function taking a single argument (the object
to adapt) and returning an object conforming the :class:`ISQLQuote`
2010-02-11 06:15:14 +03:00
protocol (e.g. exposing a :meth:`!getquoted` method). The :class:`AsIs` is
often useful for this task.
Once an object is registered, it can be safely used in SQL queries and by
the :func:`adapt` function.
2010-02-11 06:15:14 +03:00
.. class:: ISQLQuote(wrapped_object)
2010-02-11 06:15:14 +03:00
Represents the SQL adaptation protocol. Objects conforming this protocol
should implement a :meth:`!getquoted` method.
2010-02-11 06:15:14 +03:00
Adapters may subclass :class:`!ISQLQuote`, but is not necessary: it is
enough to expose a :meth:`!getquoted` method to be conforming.
2010-02-11 06:15:14 +03:00
.. attribute:: _wrapped
The wrapped object passes to the constructor
.. method:: getquoted()
Subclasses or other conforming objects should return a valid SQL
string representing the wrapped object. The :class:`!ISQLQuote`
implementation does nothing.
.. class:: AsIs
Adapter conform to the :class:`ISQLQuote` protocol useful for objects
whose string representation is already valid as SQL representation.
.. method:: getquoted()
2010-02-11 06:15:14 +03:00
Return the :meth:`str` conversion of the wrapped object. ::
>>> AsIs(42).getquoted()
'42'
.. class:: QuotedString
Adapter conform to the :class:`ISQLQuote` protocol for string-like
objects.
.. method:: getquoted()
Return the string enclosed in single quotes. Any single quote
appearing in the the string is escaped by doubling it according to SQL
string constants syntax. Backslashes are escaped too.
>>> QuotedString(r"O'Reilly").getquoted()
"'O''Reilly'"
.. class:: Binary
Adapter conform to the :class:`ISQLQuote` protocol for binary objects.
.. method:: getquoted()
Return the string enclosed in single quotes. It performs the same
escaping of the :class:`QuotedString` adapter, plus it knows how to
escape non-printable chars.
>>> Binary("\x00\x08\x0F").getquoted()
"'\\\\000\\\\010\\\\017'"
2010-02-11 06:15:14 +03:00
.. versionchanged:: 2.0.14(ish)
previously the adapter was not exposed by the :mod:`extensions`
module. In older version it can be imported from the implementation
module :mod:`!psycopg2._psycopg`.
2010-02-11 06:15:14 +03:00
.. class:: Boolean
.. class:: Float
.. class:: SQL_IN
Specialized adapters for builtin objects.
2010-02-11 06:15:14 +03:00
.. class:: DateFromPy
.. class:: TimeFromPy
.. class:: TimestampFromPy
.. class:: IntervalFromPy
Specialized adapters for Python datetime objects.
2010-02-11 06:15:14 +03:00
.. class:: DateFromMx
.. class:: TimeFromMx
.. class:: TimestampFromMx
.. class:: IntervalFromMx
Specialized adapters for `mx.DateTime`_ objects.
.. data:: adapters
Dictionary of the currently registered object adapters. Use
:func:`register_adapter` to add an adapter for a new type.
Database types casting functions
--------------------------------
These functions are used to manipulate type casters to convert from PostgreSQL
types to Python objects. See :ref:`type-casting-from-sql-to-python` for
details.
.. function:: new_type(oids, name, adapter)
Create a new type caster to convert from a PostgreSQL type to a Python
object. The created object must be registered using
:func:`register_type` to be used.
:param oids: tuple of OIDs of the PostgreSQL type to convert.
:param name: the name of the new type adapter.
:param adapter: the adaptation function.
2010-02-11 06:15:14 +03:00
The object OID can be read from the :data:`cursor.description` attribute
or by querying from the PostgreSQL catalog.
2010-02-11 06:15:14 +03:00
:data:`adapter` should have signature :samp:`fun({value}, {cur})` where
:samp:`{value}` is the string representation returned by PostgreSQL and
:samp:`{cur}` is the cursor from which data are read. In case of
:sql:`NULL`, :samp:`{value}` is ``None``. The adapter should return the
converted object.
See :ref:`type-casting-from-sql-to-python` for an usage example.
.. function:: register_type(obj [, scope])
Register a type caster created using :func:`new_type`.
2010-02-11 06:15:14 +03:00
If :obj:`!scope` is specified, it should be a :class:`connection` or a
:class:`cursor`: the type caster will be effective only limited to the
specified object. Otherwise it will be globally registered.
.. data:: string_types
The global register of type casters.
2010-02-11 06:15:14 +03:00
.. index::
single: Encoding; Mapping
.. data:: encodings
Mapping from `PostgreSQL encoding`__ names to `Python codec`__ names.
Used by Psycopg when adapting or casting unicode strings.
.. __: http://www.postgresql.org/docs/8.4/static/multibyte.html
.. __: http://docs.python.org/library/codecs.html#standard-encodings
2005-10-19 16:54:51 +04:00
2010-02-11 06:15:14 +03:00
.. index::
single: Exceptions; Additional
Additional exceptions
---------------------
The module exports a few exceptions in addition to the :ref:`standard ones
<dbapi-exceptions>` defined by the |DBAPI|_.
.. exception:: QueryCanceledError
Error related to database operation (disconnect, memory allocation etc).
It is a subclass of :exc:`~psycopg2.OperationalError`
.. exception:: TransactionRollbackError
Error causing transaction rollback (deadlocks, serialisation failures, etc).
It is a subclass of :exc:`~psycopg2.OperationalError`
2010-02-09 18:32:24 +03:00
2010-02-09 18:32:24 +03:00
.. index::
pair: Isolation level; Constants
.. _isolation-level-constants:
2005-11-19 14:23:18 +03:00
Isolation level constants
-------------------------
2005-11-19 14:23:18 +03:00
2010-02-11 06:15:14 +03:00
Psycopg2 :class:`connection` objects hold informations about the PostgreSQL
`transaction isolation level`_. The current transaction level can be read
2010-02-11 06:15:14 +03:00
from the :attr:`~connection.isolation_level` attribute. The default isolation
level is :sql:`READ COMMITTED`. A different isolation level con be set
through the :meth:`~connection.set_isolation_level` method. The level can be
set to one of the following constants:
2005-11-19 14:23:18 +03:00
.. data:: ISOLATION_LEVEL_AUTOCOMMIT
2005-11-19 14:23:18 +03:00
2010-02-11 06:15:14 +03:00
No transaction is started when command are issued and no
:meth:`~connection.commit` or :meth:`~connection.rollback` is required.
Some PostgreSQL command such as :sql:`CREATE DATABASE` can't run into a
transaction: to run such command use::
>>> conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT)
.. data:: ISOLATION_LEVEL_READ_UNCOMMITTED
2005-11-19 14:23:18 +03:00
2010-02-11 06:15:14 +03:00
The :sql:`READ UNCOMMITTED` isolation level is defined in the SQL standard but not available in
the |MVCC| model of PostgreSQL: it is replaced by the stricter :sql:`READ
COMMITTED`.
2005-11-19 14:23:18 +03:00
.. data:: ISOLATION_LEVEL_READ_COMMITTED
This is the default value. A new transaction is started at the first
2010-02-11 06:15:14 +03:00
:meth:`~cursor.execute` command on a cursor and at each new
:meth:`!execute` after a :meth:`~connection.commit` or a
:meth:`~connection.rollback`. The transaction runs in the PostgreSQL
:sql:`READ COMMITTED` isolation level.
.. data:: ISOLATION_LEVEL_REPEATABLE_READ
2005-11-19 14:23:18 +03:00
2010-02-11 06:15:14 +03:00
The :sql:`REPEATABLE READ` isolation level is defined in the SQL standard
but not available in the |MVCC| model of PostgreSQL: it is replaced by the
stricter :sql:`SERIALIZABLE`.
.. data:: ISOLATION_LEVEL_SERIALIZABLE
2005-11-19 14:23:18 +03:00
2010-02-11 06:15:14 +03:00
Transactions are run at a :sql:`SERIALIZABLE` isolation level. This is the
strictest transactions isolation level, equivalent to having the
transactions executed serially rather than concurrently. However
applications using this level must be prepared to retry reansactions due
to serialization failures. See `serializable isolation level`_ in
PostgreSQL documentation.
2005-11-19 14:23:18 +03:00
2010-02-09 18:32:24 +03:00
.. index::
pair: Transaction status; Constants
.. _transaction-status-constants:
2005-11-19 14:23:18 +03:00
Transaction status constants
----------------------------
2005-11-19 14:23:18 +03:00
These values represent the possible status of a transaction: the current value
2010-02-11 06:15:14 +03:00
can be read using the :meth:`connection.get_transaction_status` method.
2005-11-19 14:23:18 +03:00
.. data:: TRANSACTION_STATUS_IDLE
2005-11-19 14:23:18 +03:00
The session is idle and there is no current transaction.
2006-01-10 19:13:37 +03:00
.. data:: TRANSACTION_STATUS_ACTIVE
2005-11-19 14:23:18 +03:00
A command is currently in progress.
2005-10-19 16:54:51 +04:00
.. data:: TRANSACTION_STATUS_INTRANS
2005-10-19 16:54:51 +04:00
The session is idle in a valid transaction block.
.. data:: TRANSACTION_STATUS_INERROR
2005-11-19 14:23:18 +03:00
The session is idle in a failed transaction block.
2005-11-19 14:23:18 +03:00
.. data:: TRANSACTION_STATUS_UNKNOWN
2005-11-19 14:23:18 +03:00
Reported if the connection with the server is bad.
2005-11-19 14:23:18 +03:00
2010-02-09 18:32:24 +03:00
.. index::
pair: Connection status; Constants
.. _connection-status-constants:
2005-11-19 14:23:18 +03:00
Connection status constants
---------------------------
2005-11-19 14:23:18 +03:00
These values represent the possible status of a connection: the current value
2010-02-11 06:15:14 +03:00
can be read from the :data:`~connection.status` attribute.
2005-10-19 16:54:51 +04:00
.. data:: STATUS_SETUP
2005-10-19 16:54:51 +04:00
2010-02-11 06:15:14 +03:00
Used internally.
2005-10-19 16:54:51 +04:00
.. data:: STATUS_READY
2005-10-19 16:54:51 +04:00
Connection established.
2005-10-19 16:54:51 +04:00
.. data:: STATUS_BEGIN
2005-10-19 16:54:51 +04:00
Connection established. A transaction is in progress.
.. data:: STATUS_IN_TRANSACTION
An alias for :data:`STATUS_BEGIN`
.. data:: STATUS_SYNC
2010-02-11 06:15:14 +03:00
Used internally.
.. data:: STATUS_ASYNC
2005-10-19 16:54:51 +04:00
2010-02-11 06:15:14 +03:00
Used internally.
2005-10-19 16:54:51 +04:00
Additional database types
-------------------------
The :mod:`!extensions` module includes typecasters for many standard
PostgreSQL types. These objects allow the conversion of returned data into
Python objects. All the typecasters are automatically registered, except
:data:`UNICODE` and :data:`UNICODEARRAY`: you can register them using
:func:`register_type` in order to receive Unicode objects instead of strings
from the database. See :ref:`unicode-handling` for details.
.. data:: BINARYARRAY
.. data:: BOOLEAN
.. data:: BOOLEANARRAY
.. data:: DATE
.. data:: DATEARRAY
.. data:: DATETIMEARRAY
.. data:: DECIMALARRAY
.. data:: FLOAT
.. data:: FLOATARRAY
.. data:: INTEGER
.. data:: INTEGERARRAY
.. data:: INTERVAL
.. data:: INTERVALARRAY
.. data:: LONGINTEGER
.. data:: LONGINTEGERARRAY
.. data:: ROWIDARRAY
.. data:: STRINGARRAY
.. data:: TIME
.. data:: TIMEARRAY
.. data:: UNICODE
.. data:: UNICODEARRAY