2010-02-26 03:17:52 +03:00
|
|
|
`psycopg2.extensions` -- Extensions to the DB API
|
2010-02-10 00:31:40 +03:00
|
|
|
======================================================
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. sectionauthor:: Daniele Varrazzo <daniele.varrazzo@gmail.com>
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. module:: psycopg2.extensions
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-02-13 19:06:39 +03:00
|
|
|
.. testsetup:: *
|
|
|
|
|
2010-02-15 01:03:15 +03:00
|
|
|
from psycopg2.extensions import AsIs, Binary, QuotedString, ISOLATION_LEVEL_AUTOCOMMIT
|
2010-02-13 19:06:39 +03:00
|
|
|
|
2010-02-09 07:58:28 +03: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
|
|
|
|
2016-03-03 06:20:11 +03:00
|
|
|
Classes definitions
|
|
|
|
-------------------
|
2015-06-01 16:11:12 +03:00
|
|
|
|
2016-03-03 06:20:11 +03:00
|
|
|
Instances of these classes are usually returned by factory functions or
|
|
|
|
attributes. Their definitions are exposed here to allow subclassing,
|
|
|
|
introspection etc.
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2013-04-07 05:30:12 +04:00
|
|
|
.. class:: connection(dsn, async=False)
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
Is the class usually returned by the `~psycopg2.connect()` function.
|
|
|
|
It is exposed by the `extensions` module in order to allow
|
2010-02-09 07:58:28 +03:00
|
|
|
subclassing to extend its behaviour: the subclass should be passed to the
|
2010-02-26 03:17:52 +03:00
|
|
|
`!connect()` function using the `connection_factory` parameter.
|
2010-02-09 07:58:28 +03:00
|
|
|
See also :ref:`subclassing-connection`.
|
2006-01-10 19:13:37 +03:00
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
For a complete description of the class, see `connection`.
|
2006-01-12 20:41:00 +03:00
|
|
|
|
2017-02-03 07:39:20 +03:00
|
|
|
.. versionchanged:: 2.7
|
|
|
|
*async_* can be used as alias for *async*.
|
2016-03-03 06:20:11 +03:00
|
|
|
|
2013-04-07 05:30:12 +04:00
|
|
|
.. class:: cursor(conn, name=None)
|
2006-01-12 20:41:00 +03:00
|
|
|
|
2013-04-26 12:21:56 +04:00
|
|
|
It is the class usually returned by the `connection.cursor()`
|
2010-02-26 03:17:52 +03:00
|
|
|
method. It is exposed by the `extensions` module in order to allow
|
2010-02-09 07:58:28 +03:00
|
|
|
subclassing to extend its behaviour: the subclass should be passed to the
|
2010-02-26 03:17:52 +03:00
|
|
|
`!cursor()` method using the `cursor_factory` parameter. See
|
2010-02-09 07:58:28 +03:00
|
|
|
also :ref:`subclassing-cursor`.
|
2006-01-12 20:41:00 +03:00
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
For a complete description of the class, see `cursor`.
|
2006-01-12 20:41:00 +03:00
|
|
|
|
2016-03-03 06:20:11 +03:00
|
|
|
|
2010-02-14 22:42:15 +03:00
|
|
|
.. class:: lobject(conn [, oid [, mode [, new_oid [, new_file ]]]])
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-02-14 22:42:15 +03:00
|
|
|
Wrapper for a PostgreSQL large object. See :ref:`large-objects` for an
|
|
|
|
overview.
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
The class can be subclassed: see the `connection.lobject()` to know
|
|
|
|
how to specify a `!lobject` subclass.
|
2014-09-11 05:40:05 +04:00
|
|
|
|
2010-02-13 08:49:34 +03:00
|
|
|
.. versionadded:: 2.0.8
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-02-14 22:42:15 +03:00
|
|
|
.. attribute:: oid
|
|
|
|
|
|
|
|
Database OID of the object.
|
|
|
|
|
2014-09-11 05:40:05 +04:00
|
|
|
|
2010-02-14 22:42:15 +03:00
|
|
|
.. attribute:: mode
|
|
|
|
|
2011-01-05 03:05:29 +03:00
|
|
|
The mode the database was open. See `connection.lobject()` for a
|
|
|
|
description of the available modes.
|
2010-02-14 22:42:15 +03:00
|
|
|
|
2014-09-11 05:40:05 +04:00
|
|
|
|
2010-02-14 22:42:15 +03:00
|
|
|
.. method:: read(bytes=-1)
|
|
|
|
|
|
|
|
Read a chunk of data from the current file position. If -1 (default)
|
|
|
|
read all the remaining data.
|
|
|
|
|
2011-01-05 03:05:29 +03:00
|
|
|
The result is an Unicode string (decoded according to
|
|
|
|
`connection.encoding`) if the file was open in ``t`` mode, a bytes
|
|
|
|
string for ``b`` mode.
|
|
|
|
|
2011-02-15 14:00:08 +03:00
|
|
|
.. versionchanged:: 2.4
|
2011-01-05 03:05:29 +03:00
|
|
|
added Unicode support.
|
|
|
|
|
2014-09-11 05:40:05 +04:00
|
|
|
|
2010-02-14 22:42:15 +03:00
|
|
|
.. method:: write(str)
|
|
|
|
|
|
|
|
Write a string to the large object. Return the number of bytes
|
2011-01-05 03:05:29 +03:00
|
|
|
written. Unicode strings are encoded in the `connection.encoding`
|
|
|
|
before writing.
|
|
|
|
|
2011-02-15 14:00:08 +03:00
|
|
|
.. versionchanged:: 2.4
|
2011-01-05 03:05:29 +03:00
|
|
|
added Unicode support.
|
2010-02-14 22:42:15 +03:00
|
|
|
|
2014-09-11 05:40:05 +04:00
|
|
|
|
2010-02-14 22:42:15 +03:00
|
|
|
.. method:: export(file_name)
|
|
|
|
|
|
|
|
Export the large object content to the file system.
|
2014-09-11 05:40:05 +04:00
|
|
|
|
2010-02-14 22:42:15 +03:00
|
|
|
The method uses the efficient |lo_export|_ libpq function.
|
2014-09-11 05:40:05 +04:00
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
.. |lo_export| replace:: `!lo_export()`
|
2018-09-23 04:54:55 +03:00
|
|
|
.. _lo_export: https://www.postgresql.org/docs/current/static/lo-interfaces.html#LO-EXPORT
|
2010-02-14 22:42:15 +03:00
|
|
|
|
2014-09-11 05:40:05 +04:00
|
|
|
|
2010-02-14 22:42:15 +03:00
|
|
|
.. method:: seek(offset, whence=0)
|
|
|
|
|
|
|
|
Set the lobject current position.
|
|
|
|
|
2019-02-17 04:51:06 +03:00
|
|
|
.. versionchanged:: 2.6
|
2014-09-11 05:40:05 +04:00
|
|
|
added support for *offset* > 2GB.
|
|
|
|
|
|
|
|
|
2010-02-14 22:42:15 +03:00
|
|
|
.. method:: tell()
|
|
|
|
|
|
|
|
Return the lobject current position.
|
|
|
|
|
2019-02-17 04:51:06 +03:00
|
|
|
.. versionadded:: 2.2
|
2010-03-29 02:42:56 +04:00
|
|
|
|
2019-02-17 04:51:06 +03:00
|
|
|
.. versionchanged:: 2.6
|
2014-09-11 05:40:05 +04:00
|
|
|
added support for return value > 2GB.
|
|
|
|
|
|
|
|
|
|
|
|
.. method:: truncate(len=0)
|
|
|
|
|
2010-03-29 02:42:56 +04:00
|
|
|
Truncate the lobject to the given size.
|
|
|
|
|
2014-09-11 05:40:05 +04:00
|
|
|
The method will only be available if Psycopg has been built against
|
|
|
|
libpq from PostgreSQL 8.3 or later and can only be used with
|
|
|
|
PostgreSQL servers running these versions. It uses the |lo_truncate|_
|
|
|
|
libpq function.
|
2010-03-29 02:42:56 +04:00
|
|
|
|
|
|
|
.. |lo_truncate| replace:: `!lo_truncate()`
|
2018-09-23 04:54:55 +03:00
|
|
|
.. _lo_truncate: https://www.postgresql.org/docs/current/static/lo-interfaces.html#LO-TRUNCATE
|
2010-03-29 02:42:56 +04:00
|
|
|
|
2019-02-17 04:51:06 +03:00
|
|
|
.. versionadded:: 2.2
|
2014-09-11 05:40:05 +04:00
|
|
|
|
2019-02-17 04:51:06 +03:00
|
|
|
.. versionchanged:: 2.6
|
2014-09-11 05:40:05 +04:00
|
|
|
added support for *len* > 2GB.
|
|
|
|
|
|
|
|
.. warning::
|
|
|
|
|
|
|
|
If Psycopg is built with |lo_truncate| support or with the 64 bits API
|
|
|
|
support (resp. from PostgreSQL versions 8.3 and 9.3) but at runtime an
|
|
|
|
older version of the dynamic library is found, the ``psycopg2`` module
|
|
|
|
will fail to import. See :ref:`the lo_truncate FAQ <faq-lo_truncate>`
|
|
|
|
about the problem.
|
2012-03-09 16:11:28 +04:00
|
|
|
|
|
|
|
|
2010-02-14 22:42:15 +03:00
|
|
|
.. method:: close()
|
|
|
|
|
|
|
|
Close the object.
|
|
|
|
|
|
|
|
.. attribute:: closed
|
|
|
|
|
|
|
|
Boolean attribute specifying if the object is closed.
|
|
|
|
|
|
|
|
.. method:: unlink()
|
|
|
|
|
|
|
|
Close the object and remove it from the database.
|
|
|
|
|
|
|
|
|
2018-10-12 01:55:36 +03:00
|
|
|
|
2018-10-13 02:55:20 +03:00
|
|
|
.. autoclass:: ConnectionInfo(connection)
|
2018-10-12 01:55:36 +03:00
|
|
|
|
|
|
|
.. versionadded:: 2.8
|
|
|
|
|
2018-10-12 05:25:35 +03:00
|
|
|
.. autoattribute:: dbname
|
|
|
|
.. autoattribute:: user
|
|
|
|
.. autoattribute:: password
|
2018-10-12 01:55:36 +03:00
|
|
|
.. autoattribute:: host
|
2018-10-12 05:25:35 +03:00
|
|
|
.. autoattribute:: port
|
|
|
|
.. autoattribute:: options
|
2019-02-17 05:37:09 +03:00
|
|
|
.. autoattribute:: dsn_parameters
|
|
|
|
|
|
|
|
Example::
|
|
|
|
|
|
|
|
>>> conn.info.dsn_parameters
|
|
|
|
{'dbname': 'test', 'user': 'postgres', 'port': '5432', 'sslmode': 'prefer'}
|
|
|
|
|
|
|
|
Requires libpq >= 9.3.
|
|
|
|
|
2018-10-12 05:25:35 +03:00
|
|
|
.. autoattribute:: status
|
2018-10-12 06:18:07 +03:00
|
|
|
.. autoattribute:: transaction_status
|
2018-10-13 04:40:17 +03:00
|
|
|
.. automethod:: parameter_status(name)
|
2018-10-12 06:18:07 +03:00
|
|
|
|
|
|
|
.. autoattribute:: protocol_version
|
|
|
|
|
|
|
|
Currently Psycopg supports only protocol 3, which allows connection
|
|
|
|
to PostgreSQL server from version 7.4. Psycopg versions previous than
|
|
|
|
2.3 support both protocols 2 and 3.
|
|
|
|
|
|
|
|
.. autoattribute:: server_version
|
|
|
|
|
|
|
|
The number is formed by converting the major, minor, and revision
|
|
|
|
numbers into two-decimal-digit numbers and appending them together.
|
|
|
|
After PostgreSQL 10 the minor version was dropped, so the second group
|
|
|
|
of digits is always ``00``. For example, version 9.3.5 will be
|
|
|
|
returned as ``90305``, version 10.2 as ``100002``.
|
2018-10-12 01:55:36 +03:00
|
|
|
|
2018-10-13 02:47:04 +03:00
|
|
|
.. autoattribute:: error_message
|
2018-10-13 03:36:07 +03:00
|
|
|
.. autoattribute:: socket
|
|
|
|
.. autoattribute:: backend_pid
|
|
|
|
.. autoattribute:: needs_password
|
|
|
|
.. autoattribute:: used_password
|
|
|
|
.. autoattribute:: ssl_in_use
|
2018-10-13 04:21:38 +03:00
|
|
|
.. automethod:: ssl_attribute(name)
|
|
|
|
.. autoattribute:: ssl_attribute_names
|
2018-10-12 01:55:36 +03:00
|
|
|
|
|
|
|
|
2018-10-13 02:55:20 +03:00
|
|
|
.. class:: Column(\*args, \*\*kwargs)
|
2018-10-11 06:27:42 +03:00
|
|
|
|
|
|
|
Description of one result column, exposed as items of the
|
|
|
|
`cursor.description` sequence.
|
|
|
|
|
|
|
|
.. versionadded:: 2.8
|
|
|
|
|
|
|
|
in previous version the `!description` attribute was a sequence of
|
|
|
|
simple tuples or namedtuples.
|
|
|
|
|
|
|
|
.. attribute:: name
|
|
|
|
|
|
|
|
The name of the column returned.
|
|
|
|
|
|
|
|
.. attribute:: type_code
|
|
|
|
|
|
|
|
The PostgreSQL OID of the column. You can use the |pg_type|_ system
|
|
|
|
table to get more informations about the type. This is the value used
|
|
|
|
by Psycopg to decide what Python type use to represent the value. See
|
|
|
|
also :ref:`type-casting-from-sql-to-python`.
|
|
|
|
|
|
|
|
.. attribute:: display_size
|
|
|
|
|
2019-01-23 17:09:59 +03:00
|
|
|
Supposed to be the actual length of the column in bytes. Obtaining
|
|
|
|
this value is computationally intensive, so it is always `!None`.
|
|
|
|
|
|
|
|
.. versionchanged:: 2.8
|
|
|
|
It was previously possible to obtain this value using a compiler
|
|
|
|
flag at builtin.
|
2018-10-11 06:27:42 +03:00
|
|
|
|
|
|
|
.. attribute:: internal_size
|
|
|
|
|
|
|
|
The size in bytes of the column associated to this column on the
|
|
|
|
server. Set to a negative value for variable-size types See also
|
|
|
|
PQfsize_.
|
|
|
|
|
|
|
|
.. attribute:: precision
|
|
|
|
|
|
|
|
Total number of significant digits in columns of type |NUMERIC|_.
|
|
|
|
`!None` for other types.
|
|
|
|
|
|
|
|
.. attribute:: scale
|
|
|
|
|
|
|
|
Count of decimal digits in the fractional part in columns of type
|
|
|
|
|NUMERIC|. `!None` for other types.
|
|
|
|
|
|
|
|
.. attribute:: null_ok
|
|
|
|
|
|
|
|
Always `!None` as not easy to retrieve from the libpq.
|
|
|
|
|
|
|
|
.. attribute:: table_oid
|
|
|
|
|
|
|
|
The oid of the table from which the column was fetched (matching
|
|
|
|
:sql:`pg_class.oid`). `!None` if the column is not a simple reference
|
|
|
|
to a table column. See also PQftable_.
|
|
|
|
|
|
|
|
.. versionadded:: 2.8
|
|
|
|
|
|
|
|
.. attribute:: table_column
|
|
|
|
|
|
|
|
The number of the column (within its table) making up the result
|
|
|
|
(matching :sql:`pg_attribute.attnum`, so it will start from 1).
|
|
|
|
`!None` if the column is not a simple reference to a table column. See
|
|
|
|
also PQftablecol_.
|
|
|
|
|
|
|
|
.. versionadded:: 2.8
|
|
|
|
|
|
|
|
.. |pg_type| replace:: :sql:`pg_type`
|
|
|
|
.. _pg_type: https://www.postgresql.org/docs/current/static/catalog-pg-type.html
|
|
|
|
.. _PQgetlength: https://www.postgresql.org/docs/current/static/libpq-exec.html#LIBPQ-PQGETLENGTH
|
|
|
|
.. _PQfsize: https://www.postgresql.org/docs/current/static/libpq-exec.html#LIBPQ-PQFSIZE
|
|
|
|
.. _PQftable: https://www.postgresql.org/docs/current/static/libpq-exec.html#LIBPQ-PQFTABLE
|
|
|
|
.. _PQftablecol: https://www.postgresql.org/docs/current/static/libpq-exec.html#LIBPQ-PQFTABLECOL
|
|
|
|
.. _NUMERIC: https://www.postgresql.org/docs/current/static/datatype-numeric.html#DATATYPE-NUMERIC-DECIMAL
|
|
|
|
.. |NUMERIC| replace:: :sql:`NUMERIC`
|
|
|
|
|
2010-11-02 01:25:15 +03:00
|
|
|
.. autoclass:: Notify(pid, channel, payload='')
|
2010-10-16 03:21:03 +04:00
|
|
|
:members: pid, channel, payload
|
|
|
|
|
2010-11-05 15:38:49 +03:00
|
|
|
.. versionadded:: 2.3
|
2010-10-16 03:21:03 +04:00
|
|
|
|
|
|
|
|
2010-10-16 05:31:51 +04:00
|
|
|
.. autoclass:: Xid(format_id, gtrid, bqual)
|
|
|
|
:members: format_id, gtrid, bqual, prepared, owner, database
|
|
|
|
|
2010-11-07 00:13:20 +03:00
|
|
|
.. versionadded:: 2.3
|
|
|
|
|
2010-10-16 05:31:51 +04:00
|
|
|
.. automethod:: from_string(s)
|
|
|
|
|
|
|
|
|
2013-03-18 05:33:23 +04:00
|
|
|
.. autoclass:: Diagnostics(exception)
|
|
|
|
|
|
|
|
.. versionadded:: 2.5
|
|
|
|
|
|
|
|
The attributes currently available are:
|
|
|
|
|
|
|
|
.. attribute::
|
|
|
|
column_name
|
|
|
|
constraint_name
|
|
|
|
context
|
|
|
|
datatype_name
|
|
|
|
internal_position
|
|
|
|
internal_query
|
|
|
|
message_detail
|
|
|
|
message_hint
|
|
|
|
message_primary
|
|
|
|
schema_name
|
|
|
|
severity
|
2018-10-04 18:13:46 +03:00
|
|
|
severity_nonlocalized
|
2013-03-18 05:33:23 +04:00
|
|
|
source_file
|
|
|
|
source_function
|
|
|
|
source_line
|
|
|
|
sqlstate
|
|
|
|
statement_position
|
|
|
|
table_name
|
|
|
|
|
|
|
|
A string with the error field if available; `!None` if not available.
|
2013-03-20 03:33:12 +04:00
|
|
|
The attribute value is available only if the error sent by the server:
|
|
|
|
not all the fields are available for all the errors and for all the
|
|
|
|
server versions.
|
2013-03-18 05:33:23 +04:00
|
|
|
|
2018-10-04 18:13:46 +03:00
|
|
|
.. versionadded:: 2.8
|
|
|
|
The `!severity_nonlocalized` attribute.
|
|
|
|
|
2013-03-18 05:33:23 +04:00
|
|
|
|
2015-10-13 18:29:55 +03:00
|
|
|
|
2010-02-10 07:03:30 +03: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)
|
|
|
|
|
2014-09-01 18:59:13 +04:00
|
|
|
Return the SQL representation of *obj* as an `ISQLQuote`. Raise a
|
2010-02-26 03:17:52 +03:00
|
|
|
`~psycopg2.ProgrammingError` if how to adapt the object is unknown.
|
2010-02-11 06:15:14 +03:00
|
|
|
In order to allow new objects to be adapted, register a new adapter for it
|
2010-02-26 03:17:52 +03:00
|
|
|
using the `register_adapter()` function.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
|
|
|
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-26 03:17:52 +03:00
|
|
|
`!adapt()` on its components.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
|
|
|
.. function:: register_adapter(class, adapter)
|
|
|
|
|
2010-03-03 20:43:24 +03:00
|
|
|
Register a new adapter for the objects of class *class*.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-03-03 20:43:24 +03:00
|
|
|
*adapter* should be a function taking a single argument (the object
|
2014-09-01 18:59:13 +04:00
|
|
|
to adapt) and returning an object conforming to the `ISQLQuote`
|
2010-02-26 03:17:52 +03:00
|
|
|
protocol (e.g. exposing a `!getquoted()` method). The `AsIs` is
|
2010-02-10 07:03:30 +03:00
|
|
|
often useful for this task.
|
|
|
|
|
|
|
|
Once an object is registered, it can be safely used in SQL queries and by
|
2010-02-26 03:17:52 +03:00
|
|
|
the `adapt()` function.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-11 06:15:14 +03:00
|
|
|
.. class:: ISQLQuote(wrapped_object)
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-11 06:15:14 +03:00
|
|
|
Represents the SQL adaptation protocol. Objects conforming this protocol
|
2010-11-28 21:26:30 +03:00
|
|
|
should implement a `getquoted()` and optionally a `prepare()` method.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
Adapters may subclass `!ISQLQuote`, but is not necessary: it is
|
|
|
|
enough to expose a `!getquoted()` method to be conforming.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
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
|
2011-02-10 05:15:44 +03:00
|
|
|
string representing the wrapped object. In Python 3 the SQL must be
|
|
|
|
returned in a `!bytes` object. The `!ISQLQuote` implementation does
|
|
|
|
nothing.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-11-28 21:26:30 +03:00
|
|
|
.. method:: prepare(conn)
|
|
|
|
|
|
|
|
Prepare the adapter for a connection. The method is optional: if
|
|
|
|
implemented, it will be invoked before `!getquoted()` with the
|
|
|
|
connection to adapt for as argument.
|
|
|
|
|
|
|
|
A conform object can implement this method if the SQL
|
|
|
|
representation depends on any server parameter, such as the server
|
2011-02-19 19:16:28 +03:00
|
|
|
version or the :envvar:`standard_conforming_string` setting. Container
|
2010-11-28 21:26:30 +03:00
|
|
|
objects may store the connection and use it to recursively prepare
|
|
|
|
contained objects: see the implementation for
|
2011-02-19 19:16:28 +03:00
|
|
|
`psycopg2.extensions.SQL_IN` for a simple example.
|
2010-11-28 21:26:30 +03:00
|
|
|
|
|
|
|
|
|
|
|
.. class:: AsIs(object)
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
Adapter conform to the `ISQLQuote` protocol useful for objects
|
2010-02-10 07:03:30 +03:00
|
|
|
whose string representation is already valid as SQL representation.
|
|
|
|
|
|
|
|
.. method:: getquoted()
|
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
Return the `str()` conversion of the wrapped object.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
|
|
|
>>> AsIs(42).getquoted()
|
|
|
|
'42'
|
|
|
|
|
2010-11-28 21:26:30 +03:00
|
|
|
.. class:: QuotedString(str)
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
Adapter conform to the `ISQLQuote` protocol for string-like
|
2010-02-10 07:03:30 +03:00
|
|
|
objects.
|
|
|
|
|
|
|
|
.. method:: getquoted()
|
|
|
|
|
2019-06-21 06:18:23 +03:00
|
|
|
Return the string enclosed in single quotes. Any single quote appearing
|
|
|
|
in the string is escaped by doubling it according to SQL string
|
|
|
|
constants syntax. Backslashes are escaped too.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
|
|
|
>>> QuotedString(r"O'Reilly").getquoted()
|
|
|
|
"'O''Reilly'"
|
|
|
|
|
2010-11-28 21:26:30 +03:00
|
|
|
.. class:: Binary(str)
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
Adapter conform to the `ISQLQuote` protocol for binary objects.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
|
|
|
.. method:: getquoted()
|
|
|
|
|
|
|
|
Return the string enclosed in single quotes. It performs the same
|
2010-02-26 03:17:52 +03:00
|
|
|
escaping of the `QuotedString` adapter, plus it knows how to
|
2010-02-10 07:03:30 +03:00
|
|
|
escape non-printable chars.
|
|
|
|
|
|
|
|
>>> Binary("\x00\x08\x0F").getquoted()
|
|
|
|
"'\\\\000\\\\010\\\\017'"
|
|
|
|
|
2010-02-26 03:37:09 +03:00
|
|
|
.. versionchanged:: 2.0.14
|
2010-02-26 03:17:52 +03:00
|
|
|
previously the adapter was not exposed by the `extensions`
|
2010-04-14 02:48:31 +04:00
|
|
|
module. In older versions it can be imported from the implementation
|
2010-02-26 03:17:52 +03:00
|
|
|
module `!psycopg2._psycopg`.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
2010-02-11 06:15:14 +03:00
|
|
|
.. class:: Boolean
|
2010-02-13 00:58:58 +03:00
|
|
|
Float
|
|
|
|
SQL_IN
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-13 00:58:58 +03:00
|
|
|
Specialized adapters for builtin objects.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-11 06:15:14 +03:00
|
|
|
.. class:: DateFromPy
|
2010-02-13 00:58:58 +03:00
|
|
|
TimeFromPy
|
|
|
|
TimestampFromPy
|
|
|
|
IntervalFromPy
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-13 00:58:58 +03:00
|
|
|
Specialized adapters for Python datetime objects.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
|
|
|
.. data:: adapters
|
|
|
|
|
|
|
|
Dictionary of the currently registered object adapters. Use
|
2010-02-26 03:17:52 +03:00
|
|
|
`register_adapter()` to add an adapter for a new type.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
2011-09-22 18:08:53 +04:00
|
|
|
object. The object created must be registered using
|
2010-02-26 03:17:52 +03:00
|
|
|
`register_type()` to be used.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
|
|
|
: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-26 03:17:52 +03:00
|
|
|
The object OID can be read from the `cursor.description` attribute
|
2010-02-11 06:15:14 +03:00
|
|
|
or by querying from the PostgreSQL catalog.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-03-03 20:43:24 +03:00
|
|
|
*adapter* should have signature :samp:`fun({value}, {cur})` where
|
|
|
|
*value* is the string representation returned by PostgreSQL and
|
|
|
|
*cur* is the cursor from which data are read. In case of
|
2011-02-19 19:16:28 +03:00
|
|
|
:sql:`NULL`, *value* will be `!None`. The adapter should return the
|
2010-02-11 06:15:14 +03:00
|
|
|
converted object.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
|
|
|
See :ref:`type-casting-from-sql-to-python` for an usage example.
|
|
|
|
|
2010-03-03 20:43:24 +03:00
|
|
|
|
2011-09-22 18:08:53 +04:00
|
|
|
.. function:: new_array_type(oids, name, base_caster)
|
|
|
|
|
|
|
|
Create a new type caster to convert from a PostgreSQL array type to a list
|
|
|
|
of Python object. The object created must be registered using
|
|
|
|
`register_type()` to be used.
|
|
|
|
|
|
|
|
:param oids: tuple of OIDs of the PostgreSQL type to convert. It should
|
2013-10-21 18:26:57 +04:00
|
|
|
probably contain the oid of the array type (e.g. the ``typarray``
|
|
|
|
field in the ``pg_type`` table).
|
2011-09-22 18:08:53 +04:00
|
|
|
:param name: the name of the new type adapter.
|
|
|
|
:param base_caster: a Psycopg typecaster, e.g. created using the
|
|
|
|
`new_type()` function. The caster should be able to parse a single
|
|
|
|
item of the desired type.
|
|
|
|
|
|
|
|
.. versionadded:: 2.4.3
|
|
|
|
|
2012-02-24 04:33:28 +04:00
|
|
|
.. _cast-array-unknown:
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
The function can be used to create a generic array typecaster,
|
2013-10-21 18:26:57 +04:00
|
|
|
returning a list of strings: just use `psycopg2.STRING` as base
|
|
|
|
typecaster. For instance, if you want to receive an array of
|
|
|
|
:sql:`macaddr` from the database, each address represented by string,
|
|
|
|
you can use::
|
2012-02-24 04:33:28 +04:00
|
|
|
|
2013-10-21 18:26:57 +04:00
|
|
|
# select typarray from pg_type where typname = 'macaddr' -> 1040
|
2012-02-24 04:33:28 +04:00
|
|
|
psycopg2.extensions.register_type(
|
|
|
|
psycopg2.extensions.new_array_type(
|
|
|
|
(1040,), 'MACADDR[]', psycopg2.STRING))
|
|
|
|
|
2011-09-22 18:08:53 +04:00
|
|
|
|
2010-02-10 07:03:30 +03:00
|
|
|
.. function:: register_type(obj [, scope])
|
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
Register a type caster created using `new_type()`.
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-03-03 20:43:24 +03:00
|
|
|
If *scope* is specified, it should be a `connection` or a
|
2010-02-26 03:17:52 +03:00
|
|
|
`cursor`: the type caster will be effective only limited to the
|
2010-02-10 07:03:30 +03:00
|
|
|
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
|
|
|
|
|
2016-12-26 14:25:13 +03:00
|
|
|
Mapping from `PostgreSQL encoding`__ to `Python encoding`__ names.
|
2010-02-13 00:58:58 +03:00
|
|
|
Used by Psycopg when adapting or casting unicode strings. See
|
|
|
|
:ref:`unicode-handling`.
|
2010-02-11 06:15:14 +03:00
|
|
|
|
2018-09-23 04:54:55 +03:00
|
|
|
.. __: https://www.postgresql.org/docs/current/static/multibyte.html
|
|
|
|
.. __: https://docs.python.org/library/codecs.html#standard-encodings
|
2010-02-11 06:15:14 +03:00
|
|
|
|
2005-10-19 16:54:51 +04:00
|
|
|
|
|
|
|
|
2010-02-11 06:15:14 +03:00
|
|
|
.. index::
|
|
|
|
single: Exceptions; Additional
|
|
|
|
|
2018-10-15 02:48:44 +03:00
|
|
|
.. _extension-exceptions:
|
|
|
|
|
2010-02-11 06:15:14 +03:00
|
|
|
Additional exceptions
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
The module exports a few exceptions in addition to the :ref:`standard ones
|
|
|
|
<dbapi-exceptions>` defined by the |DBAPI|_.
|
|
|
|
|
2018-10-15 02:48:44 +03:00
|
|
|
.. note::
|
|
|
|
From psycopg 2.8 these error classes are also exposed by the
|
|
|
|
`psycopg2.errors` module.
|
|
|
|
|
|
|
|
|
2010-02-11 06:15:14 +03:00
|
|
|
.. exception:: QueryCanceledError
|
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
(subclasses `~psycopg2.OperationalError`)
|
2010-02-13 08:49:34 +03:00
|
|
|
|
2010-07-18 14:14:46 +04:00
|
|
|
Error related to SQL query cancellation. It can be trapped specifically to
|
2010-02-13 08:49:34 +03:00
|
|
|
detect a timeout.
|
|
|
|
|
|
|
|
.. versionadded:: 2.0.7
|
|
|
|
|
2010-02-11 06:15:14 +03:00
|
|
|
|
|
|
|
.. exception:: TransactionRollbackError
|
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
(subclasses `~psycopg2.OperationalError`)
|
2010-02-13 08:49:34 +03:00
|
|
|
|
2013-04-26 12:21:56 +04:00
|
|
|
Error causing transaction rollback (deadlocks, serialization failures,
|
2010-02-13 08:49:34 +03:00
|
|
|
etc). It can be trapped specifically to detect a deadlock.
|
|
|
|
|
|
|
|
.. versionadded:: 2.0.7
|
2010-02-11 06:15:14 +03:00
|
|
|
|
2010-02-09 18:32:24 +03:00
|
|
|
|
2010-02-11 08:17:10 +03:00
|
|
|
|
2016-03-03 06:20:11 +03:00
|
|
|
.. _coroutines-functions:
|
|
|
|
|
|
|
|
Coroutines support functions
|
|
|
|
----------------------------
|
|
|
|
|
|
|
|
These functions are used to set and retrieve the callback function for
|
|
|
|
:ref:`cooperation with coroutine libraries <green-support>`.
|
|
|
|
|
2019-02-17 04:51:06 +03:00
|
|
|
.. versionadded:: 2.2
|
2016-03-03 06:20:11 +03:00
|
|
|
|
|
|
|
.. autofunction:: set_wait_callback(f)
|
|
|
|
|
|
|
|
.. autofunction:: get_wait_callback()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Other functions
|
|
|
|
---------------
|
|
|
|
|
|
|
|
.. function:: libpq_version()
|
|
|
|
|
|
|
|
Return the version number of the ``libpq`` dynamic library loaded as an
|
|
|
|
integer, in the same format of `~connection.server_version`.
|
|
|
|
|
|
|
|
Raise `~psycopg2.NotSupportedError` if the ``psycopg2`` module was
|
|
|
|
compiled with a ``libpq`` version lesser than 9.1 (which can be detected
|
|
|
|
by the `~psycopg2.__libpq_version__` constant).
|
|
|
|
|
|
|
|
.. versionadded:: 2.7
|
|
|
|
|
|
|
|
.. seealso:: libpq docs for `PQlibVersion()`__.
|
|
|
|
|
2018-09-23 04:54:55 +03:00
|
|
|
.. __: https://www.postgresql.org/docs/current/static/libpq-misc.html#LIBPQ-PQLIBVERSION
|
2016-03-03 06:20:11 +03:00
|
|
|
|
|
|
|
|
2016-03-03 19:08:09 +03:00
|
|
|
.. function:: make_dsn(dsn=None, \*\*kwargs)
|
|
|
|
|
2016-03-03 19:52:53 +03:00
|
|
|
Create a valid connection string from arguments.
|
2016-03-03 19:08:09 +03:00
|
|
|
|
|
|
|
Put together the arguments in *kwargs* into a connection string. If *dsn*
|
|
|
|
is specified too, merge the arguments coming from both the sources. If the
|
2016-03-03 19:58:24 +03:00
|
|
|
same argument name is specified in both the sources, the *kwargs* value
|
|
|
|
overrides the *dsn* value.
|
2016-03-03 19:52:53 +03:00
|
|
|
|
|
|
|
The input arguments are validated: the output should always be a valid
|
|
|
|
connection string (as far as `parse_dsn()` is concerned). If not raise
|
|
|
|
`~psycopg2.ProgrammingError`.
|
2016-03-03 19:08:09 +03:00
|
|
|
|
|
|
|
Example::
|
|
|
|
|
|
|
|
>>> from psycopg2.extensions import make_dsn
|
|
|
|
>>> make_dsn('dbname=foo host=example.com', password="s3cr3t")
|
|
|
|
'host=example.com password=s3cr3t dbname=foo'
|
|
|
|
|
|
|
|
.. versionadded:: 2.7
|
|
|
|
|
|
|
|
|
2016-03-03 06:20:11 +03:00
|
|
|
.. function:: parse_dsn(dsn)
|
|
|
|
|
|
|
|
Parse connection string into a dictionary of keywords and values.
|
|
|
|
|
2016-03-03 19:52:53 +03:00
|
|
|
Parsing is delegated to the libpq: different versions of the client
|
|
|
|
library may support different formats or parameters (for example,
|
|
|
|
`connection URIs`__ are only supported from libpq 9.2). Raise
|
|
|
|
`~psycopg2.ProgrammingError` if the *dsn* is not valid.
|
|
|
|
|
2018-09-23 04:54:55 +03:00
|
|
|
.. __: https://www.postgresql.org/docs/current/static/libpq-connect.html#LIBPQ-CONNSTRING
|
2016-03-03 06:20:11 +03:00
|
|
|
|
|
|
|
Example::
|
|
|
|
|
2016-03-03 19:08:09 +03:00
|
|
|
>>> from psycopg2.extensions import parse_dsn
|
|
|
|
>>> parse_dsn('dbname=test user=postgres password=secret')
|
2016-03-03 06:20:11 +03:00
|
|
|
{'password': 'secret', 'user': 'postgres', 'dbname': 'test'}
|
2016-03-03 19:52:53 +03:00
|
|
|
>>> parse_dsn("postgresql://someone@example.com/somedb?connect_timeout=10")
|
|
|
|
{'host': 'example.com', 'user': 'someone', 'dbname': 'somedb', 'connect_timeout': '10'}
|
2016-03-03 06:20:11 +03:00
|
|
|
|
|
|
|
.. versionadded:: 2.7
|
|
|
|
|
2016-03-03 19:52:53 +03:00
|
|
|
.. seealso:: libpq docs for `PQconninfoParse()`__.
|
|
|
|
|
2018-09-23 04:54:55 +03:00
|
|
|
.. __: https://www.postgresql.org/docs/current/static/libpq-connect.html#LIBPQ-PQCONNINFOPARSE
|
2016-03-03 19:52:53 +03:00
|
|
|
|
2016-03-03 06:20:11 +03:00
|
|
|
|
|
|
|
.. function:: quote_ident(str, scope)
|
|
|
|
|
|
|
|
Return quoted identifier according to PostgreSQL quoting rules.
|
|
|
|
|
|
|
|
The *scope* must be a `connection` or a `cursor`, the underlying
|
|
|
|
connection encoding is used for any necessary character conversion.
|
|
|
|
|
|
|
|
.. versionadded:: 2.7
|
|
|
|
|
|
|
|
.. seealso:: libpq docs for `PQescapeIdentifier()`__
|
|
|
|
|
2018-09-23 04:54:55 +03:00
|
|
|
.. __: https://www.postgresql.org/docs/current/static/libpq-exec.html#LIBPQ-PQESCAPEIDENTIFIER
|
2016-03-03 06:20:11 +03:00
|
|
|
|
2018-05-20 22:13:04 +03:00
|
|
|
|
|
|
|
.. method:: encrypt_password(password, user, scope=None, algorithm=None)
|
|
|
|
|
|
|
|
Return the encrypted form of a PostgreSQL password.
|
|
|
|
|
|
|
|
:param password: the cleartext password to encrypt
|
|
|
|
:param user: the name of the user to use the password for
|
|
|
|
:param scope: the scope to encrypt the password into; if *algorithm* is
|
|
|
|
``md5`` it can be `!None`
|
|
|
|
:type scope: `connection` or `cursor`
|
|
|
|
:param algorithm: the password encryption algorithm to use
|
|
|
|
|
|
|
|
The *algorithm* ``md5`` is always supported. Other algorithms are only
|
|
|
|
supported if the client libpq version is at least 10 and may require a
|
|
|
|
compatible server version: check the `PostgreSQL encryption
|
|
|
|
documentation`__ to know the algorithms supported by your server.
|
|
|
|
|
|
|
|
.. __: https://www.postgresql.org/docs/current/static/encryption-options.html
|
|
|
|
|
|
|
|
Using `!None` as *algorithm* will result in querying the server to know the
|
|
|
|
current server password encryption setting, which is a blocking operation:
|
|
|
|
query the server separately and specify a value for *algorithm* if you
|
|
|
|
want to maintain a non-blocking behaviour.
|
|
|
|
|
|
|
|
.. versionadded:: 2.8
|
|
|
|
|
|
|
|
.. seealso:: PostgreSQL docs for the `password_encryption`__ setting, libpq `PQencryptPasswordConn()`__, `PQencryptPassword()`__ functions.
|
|
|
|
|
|
|
|
.. __: https://www.postgresql.org/docs/current/static/runtime-config-connection.html#GUC-PASSWORD-ENCRYPTION
|
|
|
|
.. __: https://www.postgresql.org/docs/current/static/libpq-misc.html#LIBPQ-PQENCRYPTPASSWORDCONN
|
|
|
|
.. __: https://www.postgresql.org/docs/current/static/libpq-misc.html#LIBPQ-PQENCRYPTPASSWORD
|
|
|
|
|
2016-03-03 06:20:11 +03:00
|
|
|
|
|
|
|
|
2010-02-09 18:32:24 +03:00
|
|
|
.. index::
|
|
|
|
pair: Isolation level; Constants
|
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. _isolation-level-constants:
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
Isolation level constants
|
|
|
|
-------------------------
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
Psycopg2 `connection` objects hold informations about the PostgreSQL
|
2017-02-04 18:55:59 +03:00
|
|
|
`transaction isolation level`_. By default Psycopg doesn't change the default
|
|
|
|
configuration of the server (`ISOLATION_LEVEL_DEFAULT`); the default for
|
|
|
|
PostgreSQL servers is typically :sql:`READ COMMITTED`, but this may be changed
|
|
|
|
in the server configuration files. A different isolation level can be set
|
|
|
|
through the `~connection.set_isolation_level()` or `~connection.set_session()`
|
|
|
|
methods. The level can be set to one of the following constants:
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. data:: ISOLATION_LEVEL_AUTOCOMMIT
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2017-02-04 18:55:59 +03:00
|
|
|
No transaction is started when commands are executed and no
|
2010-02-26 03:17:52 +03:00
|
|
|
`~connection.commit()` or `~connection.rollback()` is required.
|
2010-02-18 06:51:17 +03:00
|
|
|
Some PostgreSQL command such as :sql:`CREATE DATABASE` or :sql:`VACUUM`
|
|
|
|
can't run into a transaction: to run such command use::
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
>>> conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT)
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-18 06:51:17 +03:00
|
|
|
See also :ref:`transactions-control`.
|
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. data:: ISOLATION_LEVEL_READ_UNCOMMITTED
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-03-03 20:43:24 +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
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. data:: ISOLATION_LEVEL_READ_COMMITTED
|
2005-11-26 10:47:48 +03:00
|
|
|
|
2019-06-21 06:18:23 +03:00
|
|
|
This is usually the default PostgreSQL value, but a different default may
|
|
|
|
be set in the database configuration.
|
2011-11-17 04:41:44 +04:00
|
|
|
|
|
|
|
A new transaction is started at the first `~cursor.execute()` command on a
|
|
|
|
cursor and at each new `!execute()` after a `~connection.commit()` or a
|
2010-02-26 03:17:52 +03:00
|
|
|
`~connection.rollback()`. The transaction runs in the PostgreSQL
|
2011-11-17 04:41:44 +04:00
|
|
|
:sql:`READ COMMITTED` isolation level: a :sql:`SELECT` query sees only
|
|
|
|
data committed before the query began; it never sees either uncommitted
|
|
|
|
data or changes committed during query execution by concurrent
|
|
|
|
transactions.
|
|
|
|
|
|
|
|
.. seealso:: `Read Committed Isolation Level`__ in PostgreSQL
|
|
|
|
documentation.
|
|
|
|
|
2018-09-23 04:54:55 +03:00
|
|
|
.. __: https://www.postgresql.org/docs/current/static/transaction-iso.html#XACT-READ-COMMITTED
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. data:: ISOLATION_LEVEL_REPEATABLE_READ
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2011-11-17 04:41:44 +04:00
|
|
|
As in `!ISOLATION_LEVEL_READ_COMMITTED`, a new transaction is started at
|
|
|
|
the first `~cursor.execute()` command. Transactions run at a
|
|
|
|
:sql:`REPEATABLE READ` isolation level: all the queries in a transaction
|
|
|
|
see a snapshot as of the start of the transaction, not as of the start of
|
|
|
|
the current query within the transaction. However applications using this
|
|
|
|
level must be prepared to retry transactions due to serialization
|
|
|
|
failures.
|
|
|
|
|
|
|
|
While this level provides a guarantee that each transaction sees a
|
|
|
|
completely stable view of the database, this view will not necessarily
|
|
|
|
always be consistent with some serial (one at a time) execution of
|
|
|
|
concurrent transactions of the same level.
|
|
|
|
|
|
|
|
.. versionchanged:: 2.4.2
|
|
|
|
The value was an alias for `!ISOLATION_LEVEL_SERIALIZABLE` before. The
|
|
|
|
two levels are distinct since PostgreSQL 9.1
|
|
|
|
|
|
|
|
.. seealso:: `Repeatable Read Isolation Level`__ in PostgreSQL
|
|
|
|
documentation.
|
|
|
|
|
2018-09-23 04:54:55 +03:00
|
|
|
.. __: https://www.postgresql.org/docs/current/static/transaction-iso.html#XACT-REPEATABLE-READ
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. data:: ISOLATION_LEVEL_SERIALIZABLE
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2011-11-17 04:41:44 +04:00
|
|
|
As in `!ISOLATION_LEVEL_READ_COMMITTED`, a new transaction is started at
|
|
|
|
the first `~cursor.execute()` command. Transactions 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
|
2013-04-26 12:21:56 +04:00
|
|
|
prepared to retry transactions due to serialization failures.
|
2011-11-17 04:41:44 +04:00
|
|
|
|
|
|
|
Starting from PostgreSQL 9.1, this mode monitors for conditions which
|
|
|
|
could make execution of a concurrent set of serializable transactions
|
|
|
|
behave in a manner inconsistent with all possible serial (one at a time)
|
|
|
|
executions of those transaction. In previous version the behaviour was the
|
|
|
|
same of the :sql:`REPEATABLE READ` isolation level.
|
|
|
|
|
|
|
|
.. seealso:: `Serializable Isolation Level`__ in PostgreSQL documentation.
|
|
|
|
|
2018-09-23 04:54:55 +03:00
|
|
|
.. __: https://www.postgresql.org/docs/current/static/transaction-iso.html#XACT-SERIALIZABLE
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2017-02-04 17:43:54 +03:00
|
|
|
.. data:: ISOLATION_LEVEL_DEFAULT
|
|
|
|
|
2017-02-04 18:55:59 +03:00
|
|
|
A new transaction is started at the first `~cursor.execute()` command, but
|
|
|
|
the isolation level is not explicitly selected by Psycopg: the server will
|
|
|
|
use whatever level is defined in its configuration or by statements
|
|
|
|
executed within the session outside Pyscopg control. If you want to know
|
|
|
|
what the value is you can use a query such as :sql:`show
|
|
|
|
transaction_isolation`.
|
2017-02-04 17:43:54 +03:00
|
|
|
|
|
|
|
.. versionadded:: 2.7
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-02-09 18:32:24 +03:00
|
|
|
|
|
|
|
.. index::
|
|
|
|
pair: Transaction status; Constants
|
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. _transaction-status-constants:
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
Transaction status constants
|
|
|
|
----------------------------
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
These values represent the possible status of a transaction: the current value
|
2018-10-13 05:28:42 +03:00
|
|
|
can be read using the `connection.info.transaction_status` property.
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. data:: TRANSACTION_STATUS_IDLE
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
The session is idle and there is no current transaction.
|
2006-01-10 19:13:37 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. data:: TRANSACTION_STATUS_ACTIVE
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
A command is currently in progress.
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. data:: TRANSACTION_STATUS_INTRANS
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
The session is idle in a valid transaction block.
|
2005-11-26 10:47:48 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. data:: TRANSACTION_STATUS_INERROR
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
The session is idle in a failed transaction block.
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. data:: TRANSACTION_STATUS_UNKNOWN
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-02-09 07:58:28 +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
|
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. _connection-status-constants:
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
Connection status constants
|
|
|
|
---------------------------
|
2005-11-19 14:23:18 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
These values represent the possible status of a connection: the current value
|
2010-02-26 03:17:52 +03:00
|
|
|
can be read from the `~connection.status` attribute.
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-04-23 14:41:31 +04:00
|
|
|
It is possible to find the connection in other status than the one shown below.
|
|
|
|
Those are the only states in which a working connection is expected to be found
|
|
|
|
during the execution of regular Python client code: other states are for
|
|
|
|
internal usage and Python code should not rely on them.
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. data:: STATUS_READY
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-04-23 14:41:31 +04:00
|
|
|
Connection established. No transaction in progress.
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. data:: STATUS_BEGIN
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-04-23 14:41:31 +04:00
|
|
|
Connection established. A transaction is currently in progress.
|
2005-11-26 10:47:48 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. data:: STATUS_IN_TRANSACTION
|
2005-11-26 10:47:48 +03:00
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
An alias for `STATUS_BEGIN`
|
2005-11-26 10:47:48 +03:00
|
|
|
|
2010-10-12 05:46:38 +04:00
|
|
|
.. data:: STATUS_PREPARED
|
|
|
|
|
|
|
|
The connection has been prepared for the second phase in a :ref:`two-phase
|
|
|
|
commit <tpc>` transaction. The connection can't be used to send commands
|
|
|
|
to the database until the transaction is finished with
|
|
|
|
`~connection.tpc_commit()` or `~connection.tpc_rollback()`.
|
|
|
|
|
2010-11-05 15:38:49 +03:00
|
|
|
.. versionadded:: 2.3
|
2010-10-12 05:46:38 +04:00
|
|
|
|
2005-10-19 16:54:51 +04:00
|
|
|
|
2010-02-11 08:17:10 +03:00
|
|
|
|
2010-04-08 16:22:55 +04:00
|
|
|
.. index::
|
|
|
|
pair: Poll status; Constants
|
|
|
|
|
|
|
|
.. _poll-constants:
|
|
|
|
|
|
|
|
Poll constants
|
|
|
|
--------------
|
|
|
|
|
2019-02-17 04:51:06 +03:00
|
|
|
.. versionadded:: 2.2
|
2010-04-08 16:22:55 +04:00
|
|
|
|
2010-04-20 02:49:14 +04:00
|
|
|
These values can be returned by `connection.poll()` during asynchronous
|
2010-04-04 06:10:18 +04:00
|
|
|
connection and communication. They match the values in the libpq enum
|
|
|
|
`!PostgresPollingStatusType`. See :ref:`async-support` and
|
|
|
|
:ref:`green-support`.
|
2010-04-08 16:22:55 +04:00
|
|
|
|
|
|
|
.. data:: POLL_OK
|
|
|
|
|
2010-04-20 02:49:14 +04:00
|
|
|
The data being read is available, or the file descriptor is ready for
|
|
|
|
writing: reading or writing will not block.
|
2010-04-08 16:22:55 +04:00
|
|
|
|
|
|
|
.. data:: POLL_READ
|
|
|
|
|
2010-04-20 02:49:14 +04:00
|
|
|
Some data is being read from the backend, but it is not available yet on
|
|
|
|
the client and reading would block. Upon receiving this value, the client
|
|
|
|
should wait for the connection file descriptor to be ready *for reading*.
|
|
|
|
For example::
|
2010-04-08 16:22:55 +04:00
|
|
|
|
|
|
|
select.select([conn.fileno()], [], [])
|
|
|
|
|
|
|
|
.. data:: POLL_WRITE
|
|
|
|
|
2010-04-20 02:49:14 +04:00
|
|
|
Some data is being sent to the backend but the connection file descriptor
|
|
|
|
can't currently accept new data. Upon receiving this value, the client
|
|
|
|
should wait for the connection file descriptor to be ready *for writing*.
|
|
|
|
For example::
|
2010-04-08 16:22:55 +04:00
|
|
|
|
|
|
|
select.select([], [conn.fileno()], [])
|
|
|
|
|
2010-04-04 06:10:18 +04:00
|
|
|
.. data:: POLL_ERROR
|
|
|
|
|
|
|
|
There was a problem during connection polling. This value should actually
|
|
|
|
never be returned: in case of poll error usually an exception containing
|
|
|
|
the relevant details is raised.
|
|
|
|
|
2010-04-08 16:22:55 +04:00
|
|
|
|
|
|
|
|
2010-02-11 08:17:10 +03:00
|
|
|
Additional database types
|
|
|
|
-------------------------
|
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
The `!extensions` module includes typecasters for many standard
|
2010-02-11 08:17:10 +03:00
|
|
|
PostgreSQL types. These objects allow the conversion of returned data into
|
|
|
|
Python objects. All the typecasters are automatically registered, except
|
2010-02-26 03:17:52 +03:00
|
|
|
`UNICODE` and `UNICODEARRAY`: you can register them using
|
|
|
|
`register_type()` in order to receive Unicode objects instead of strings
|
2010-02-11 08:17:10 +03:00
|
|
|
from the database. See :ref:`unicode-handling` for details.
|
|
|
|
|
2010-04-14 03:41:03 +04:00
|
|
|
.. data:: BOOLEAN
|
2019-01-18 19:15:15 +03:00
|
|
|
BYTES
|
2010-04-14 03:41:03 +04:00
|
|
|
DATE
|
|
|
|
DECIMAL
|
|
|
|
FLOAT
|
|
|
|
INTEGER
|
|
|
|
INTERVAL
|
|
|
|
LONGINTEGER
|
|
|
|
TIME
|
|
|
|
UNICODE
|
|
|
|
|
2011-10-15 02:59:49 +04:00
|
|
|
Typecasters for basic types. Note that a few other ones (`~psycopg2.BINARY`,
|
2010-04-14 03:41:03 +04:00
|
|
|
`~psycopg2.DATETIME`, `~psycopg2.NUMBER`, `~psycopg2.ROWID`,
|
|
|
|
`~psycopg2.STRING`) are exposed by the `psycopg2` module for |DBAPI|_
|
|
|
|
compliance.
|
|
|
|
|
2010-02-11 08:17:10 +03:00
|
|
|
.. data:: BINARYARRAY
|
2010-02-13 00:58:58 +03:00
|
|
|
BOOLEANARRAY
|
2019-01-18 19:15:15 +03:00
|
|
|
BYTESARRAY
|
2010-02-13 00:58:58 +03:00
|
|
|
DATEARRAY
|
|
|
|
DATETIMEARRAY
|
|
|
|
DECIMALARRAY
|
|
|
|
FLOATARRAY
|
|
|
|
INTEGERARRAY
|
|
|
|
INTERVALARRAY
|
|
|
|
LONGINTEGERARRAY
|
|
|
|
ROWIDARRAY
|
|
|
|
STRINGARRAY
|
|
|
|
TIMEARRAY
|
|
|
|
UNICODEARRAY
|
2010-02-11 08:17:10 +03:00
|
|
|
|
2010-04-14 03:41:03 +04:00
|
|
|
Typecasters to convert arrays of sql types into Python lists.
|
2010-04-14 03:27:28 +04:00
|
|
|
|
|
|
|
.. data:: PYDATE
|
|
|
|
PYDATETIME
|
2017-03-22 06:37:41 +03:00
|
|
|
PYDATETIMETZ
|
2010-04-14 03:27:28 +04:00
|
|
|
PYINTERVAL
|
|
|
|
PYTIME
|
2010-05-04 04:43:23 +04:00
|
|
|
PYDATEARRAY
|
|
|
|
PYDATETIMEARRAY
|
2017-03-22 06:37:41 +03:00
|
|
|
PYDATETIMETZARRAY
|
2010-05-04 04:43:23 +04:00
|
|
|
PYINTERVALARRAY
|
|
|
|
PYTIMEARRAY
|
2010-04-14 03:27:28 +04:00
|
|
|
|
2010-04-14 03:41:03 +04:00
|
|
|
Typecasters to convert time-related data types to Python `!datetime`
|
|
|
|
objects.
|
2010-04-14 03:27:28 +04:00
|
|
|
|
2019-02-17 04:51:06 +03:00
|
|
|
.. versionchanged:: 2.2
|
2010-04-14 03:27:28 +04:00
|
|
|
previously the `DECIMAL` typecaster and the specific time-related
|
|
|
|
typecasters (`!PY*` and `!MX*`) were not exposed by the `extensions`
|
|
|
|
module. In older versions they can be imported from the implementation
|
|
|
|
module `!psycopg2._psycopg`.
|
|
|
|
|
2019-01-18 19:15:15 +03:00
|
|
|
.. versionadded:: 2.7.2
|
|
|
|
the `!*DATETIMETZ*` objects.
|
|
|
|
|
|
|
|
.. versionadded:: 2.8
|
|
|
|
the `!BYTES` and `BYTESARRAY` objects.
|