2005-10-18 09:42:00 +04:00
|
|
|
"""psycopg extensions to the DBAPI-2.0
|
2005-01-20 08:49:40 +03:00
|
|
|
|
2005-10-18 09:42:00 +04:00
|
|
|
This module holds all the extensions to the DBAPI-2.0 provided by psycopg.
|
2005-01-20 08:49:40 +03:00
|
|
|
|
2005-11-26 10:47:48 +03:00
|
|
|
- `connection` -- the new-type inheritable connection class
|
|
|
|
- `cursor` -- the new-type inheritable cursor class
|
2006-01-05 19:56:40 +03:00
|
|
|
- `adapt()` -- exposes the PEP-246_ compatible adapting mechanism used
|
2005-11-26 10:47:48 +03:00
|
|
|
by psycopg to adapt Python types to PostgreSQL ones
|
|
|
|
|
|
|
|
.. _PEP-246: http://www.python.org/peps/pep-0246.html
|
2005-01-20 08:49:40 +03:00
|
|
|
"""
|
2004-10-19 07:17:12 +04:00
|
|
|
# psycopg/extensions.py - DBAPI-2.0 extensions specific to psycopg
|
|
|
|
#
|
|
|
|
# Copyright (C) 2003-2004 Federico Di Gregorio <fog@debian.org>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by the
|
|
|
|
# Free Software Foundation; either version 2, or (at your option) any later
|
|
|
|
# version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY
|
|
|
|
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
# for more details.
|
|
|
|
|
|
|
|
from _psycopg import UNICODE, INTEGER, LONGINTEGER, BOOLEAN, FLOAT
|
|
|
|
from _psycopg import TIME, DATE, INTERVAL
|
|
|
|
|
2005-03-23 13:32:30 +03:00
|
|
|
from _psycopg import Boolean, QuotedString, AsIs
|
2004-10-19 07:17:12 +04:00
|
|
|
try:
|
|
|
|
from _psycopg import DateFromMx, TimeFromMx, TimestampFromMx
|
|
|
|
from _psycopg import IntervalFromMx
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
try:
|
|
|
|
from _psycopg import DateFromPy, TimeFromPy, TimestampFromPy
|
|
|
|
from _psycopg import IntervalFromPy
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
from _psycopg import adapt, adapters, encodings, connection, cursor
|
|
|
|
from _psycopg import string_types, binary_types, new_type, register_type
|
2005-01-20 08:49:40 +03:00
|
|
|
from _psycopg import ISQLQuote
|
|
|
|
|
2005-10-08 07:04:40 +04:00
|
|
|
"""Isolation level values."""
|
2006-09-01 12:20:11 +04:00
|
|
|
ISOLATION_LEVEL_AUTOCOMMIT = 0
|
2005-11-19 17:20:41 +03:00
|
|
|
ISOLATION_LEVEL_READ_COMMITTED = 1
|
2006-09-01 12:20:11 +04:00
|
|
|
ISOLATION_LEVEL_SERIALIZABLE = 2
|
2005-10-08 07:04:40 +04:00
|
|
|
|
2005-11-19 17:20:41 +03:00
|
|
|
# PostgreSQL maps the the other standard values to already defined levels
|
2005-10-08 07:04:40 +04:00
|
|
|
ISOLATION_LEVEL_REPEATABLE_READ = ISOLATION_LEVEL_SERIALIZABLE
|
2005-11-19 17:20:41 +03:00
|
|
|
ISOLATION_LEVEL_READ_UNCOMMITTED = ISOLATION_LEVEL_READ_COMMITTED
|
2005-10-08 07:04:40 +04:00
|
|
|
|
2007-04-26 02:42:36 +04:00
|
|
|
"""psycopg connection status values."""
|
|
|
|
STATUS_SETUP = 0
|
2006-09-01 12:20:11 +04:00
|
|
|
STATUS_READY = 1
|
|
|
|
STATUS_BEGIN = 2
|
|
|
|
STATUS_SYNC = 3
|
|
|
|
STATUS_ASYNC = 4
|
|
|
|
|
|
|
|
# This is a usefull mnemonic to check if the connection is in a transaction
|
|
|
|
STATUS_IN_TRANSACTION = STATUS_BEGIN
|
|
|
|
|
2007-04-26 02:42:36 +04:00
|
|
|
"""Backend transaction status values."""
|
|
|
|
TRANSACTION_STATUS_IDLE = 0
|
|
|
|
TRANSACTION_STATUS_ACTIVE = 1
|
|
|
|
TRANSACTION_STATUS_INTRANS = 2
|
|
|
|
TRANSACTION_STATUS_INERROR = 3
|
|
|
|
TRANSACTION_STATUS_UNKNOWN = 4
|
2005-01-20 08:49:40 +03:00
|
|
|
|
|
|
|
def register_adapter(typ, callable):
|
|
|
|
"""Register 'callable' as an ISQLQuote adapter for type 'typ'."""
|
|
|
|
adapters[(typ, ISQLQuote)] = callable
|
2006-01-12 21:36:57 +03:00
|
|
|
|
2007-01-16 13:58:05 +03:00
|
|
|
|
|
|
|
# The SQL_IN class is the official adapter for tuples starting from 2.0.6.
|
|
|
|
class SQL_IN(object):
|
|
|
|
"""Adapt any iterable to an SQL quotable object."""
|
|
|
|
|
|
|
|
def __init__(self, seq):
|
|
|
|
self._seq = seq
|
|
|
|
|
|
|
|
def prepare(self, conn):
|
|
|
|
self._conn = conn
|
|
|
|
|
|
|
|
def getquoted(self):
|
|
|
|
# this is the important line: note how every object in the
|
|
|
|
# list is adapted and then how getquoted() is called on it
|
|
|
|
pobjs = [adapt(o) for o in self._seq]
|
|
|
|
for obj in pobjs:
|
|
|
|
if hasattr(obj, 'prepare'):
|
|
|
|
obj.prepare(self._conn)
|
|
|
|
qobjs = [str(o.getquoted()) for o in pobjs]
|
|
|
|
return '(' + ', '.join(qobjs) + ')'
|
|
|
|
|
|
|
|
__str__ = getquoted
|
|
|
|
|
|
|
|
register_adapter(tuple, SQL_IN)
|
|
|
|
|
|
|
|
|
2006-01-12 21:36:57 +03:00
|
|
|
__all__ = [ k for k in locals().keys() if not k.startswith('_') ]
|