1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
|
.. index::
pair: psycopg2; Differences
.. currentmodule:: psycopg
.. _from-psycopg2:
Differences from `!psycopg2`
============================
Psycopg 3 uses the common DBAPI structure of many other database adapters and
tries to behave as close as possible to `!psycopg2`. There are however a few
differences to be aware of.
.. tip::
Most of the times, the workarounds suggested here will work with both
Psycopg 2 and 3, which could be useful if you are porting a program or
writing a program that should work with both Psycopg 2 and 3.
.. _install-difference:
Which package to install?
-------------------------
.. important::
- If you were installing ``psycopg2-binary`` you should now install
``psycopg[binary]`` instead.
- If you were installing ``psycopg2``, therefore your client has the
prerequisites to build the C extension yourself, you can install
``psycopg[c]`` instead.
Please see the :ref:`installation <installation>` section for all the details.
Rationale: both the ``psycopg2`` and the ``psycopg2-binary`` distribution
packages install the ``psycopg2`` Python package. This scenario is not well
covered by Python packaging metadata, resulting in complex dependencies
management and problems if both the packages are installed.
In Psycopg 3 there is a clear "interface" package, ``psycopg``, and optional
speed-up extensions that can be included in the dependencies of a service (but
don't need to -- and shouldn't be -- included in the dependencies of a
library). See :ref:`install-dependencies` for more details.
.. _server-side-binding:
Server-side binding
-------------------
Psycopg 3 sends the query and the parameters to the server separately, instead
of merging them on the client side. Server-side binding works for normal
:sql:`SELECT` and data manipulation statements (:sql:`INSERT`, :sql:`UPDATE`,
:sql:`DELETE`), but it doesn't work with many other statements. For instance,
it doesn't work with :sql:`SET` or with :sql:`NOTIFY`::
>>> conn.execute("SET TimeZone TO %s", ["UTC"])
Traceback (most recent call last):
...
psycopg.errors.SyntaxError: syntax error at or near "$1"
LINE 1: SET TimeZone TO $1
^
>>> conn.execute("NOTIFY %s, %s", ["chan", 42])
Traceback (most recent call last):
...
psycopg.errors.SyntaxError: syntax error at or near "$1"
LINE 1: NOTIFY $1, $2
^
and with any data definition statement::
>>> conn.execute("CREATE TABLE foo (id int DEFAULT %s)", [42])
Traceback (most recent call last):
...
psycopg.errors.UndefinedParameter: there is no parameter $1
LINE 1: CREATE TABLE foo (id int DEFAULT $1)
^
Sometimes, PostgreSQL offers an alternative: for instance the `set_config()`__
function can be used instead of the :sql:`SET` statement, the `pg_notify()`__
function can be used instead of :sql:`NOTIFY`::
>>> conn.execute("SELECT set_config('TimeZone', %s, false)", ["UTC"])
>>> conn.execute("SELECT pg_notify(%s, %s)", ["chan", "42"])
.. __: https://www.postgresql.org/docs/current/functions-admin.html
#FUNCTIONS-ADMIN-SET
.. __: https://www.postgresql.org/docs/current/sql-notify.html
#id-1.9.3.157.7.5
If this is not possible, you must merge the query and the parameter on the
client side. You can do so using the `psycopg.sql` objects::
>>> from psycopg import sql
>>> cur.execute(sql.SQL("CREATE TABLE foo (id int DEFAULT {})").format(42))
or creating a :ref:`client-side binding cursor <client-side-binding-cursors>`
such as `ClientCursor`::
>>> cur = ClientCursor(conn)
>>> cur.execute("CREATE TABLE foo (id int DEFAULT %s)", [42])
If you need `!ClientCursor` often, you can set the `Connection.cursor_factory`
to have them created by default by `Connection.cursor()`. This way, Psycopg 3
will behave largely the same way of Psycopg 2.
Note that, both server-side and client-side, you can only specify **values**
as parameters (i.e. *the strings that go in single quotes*). If you need to
parametrize different parts of a statement (such as a table name), you must
use the `psycopg.sql` module::
>>> from psycopg import sql
# This will quote the user and the password using the right quotes
# e.g.: ALTER USER "foo" SET PASSWORD 'bar'
>>> conn.execute(
... sql.SQL("ALTER USER {} SET PASSWORD {}")
... .format(sql.Identifier(username), password))
.. index::
single: PgBouncer
double: Query protocol; advanced
.. _advanced-query-protocol:
Extended query Protocol
-----------------------
In order to use :ref:`server-side-binding`, psycopg normally uses the
`extended query protocol`__ to communicate with the backend.
In certain context outside pure PostgreSQL, the extended query protocol is not
supported, for instance to query the `PgBouncer admin console`__. In this case
you should probably use a `ClientCursor`. See :ref:`simple-query-protocol` for
details.
.. __: https://www.postgresql.org/docs/current/protocol-flow.html#PROTOCOL-FLOW-EXT-QUERY
.. __: https://www.pgbouncer.org/usage.html#admin-console
.. _multi-statements:
Multiple statements in the same query
-------------------------------------
As a consequence of using :ref:`server-side bindings <server-side-binding>`,
when parameters are used, it is not possible to execute several statements in
the same `!execute()` call, separating them by semicolon::
>>> conn.execute(
... "INSERT INTO foo VALUES (%s); INSERT INTO foo VALUES (%s)",
... (10, 20))
Traceback (most recent call last):
...
psycopg.errors.SyntaxError: cannot insert multiple commands into a prepared statement
One obvious way to work around the problem is to use several `!execute()`
calls.
**There is no such limitation if no parameters are used**. As a consequence, you
can compose a multiple query on the client side and run them all in the same
`!execute()` call, using the `psycopg.sql` objects::
>>> from psycopg import sql
>>> conn.execute(
... sql.SQL("INSERT INTO foo VALUES ({}); INSERT INTO foo values ({})")
... .format(10, 20))
or a :ref:`client-side binding cursor <client-side-binding-cursors>`::
>>> cur = psycopg.ClientCursor(conn)
>>> cur.execute(
... "INSERT INTO foo VALUES (%s); INSERT INTO foo VALUES (%s)",
... (10, 20))
.. warning::
You cannot execute multiple statements in the same query:
- when retrieving a :ref:`binary result <binary-data>` (such as using
``.execute(..., binary=True)``;
- when using the :ref:`pipeline mode <pipeline-mode>`.
.. warning::
If a statement must be executed outside a transaction (such as
:sql:`CREATE DATABASE`), it cannot be executed in batch with other
statements, even if the connection is in autocommit mode::
>>> conn.autocommit = True
>>> conn.execute("CREATE DATABASE foo; SELECT 1")
Traceback (most recent call last):
...
psycopg.errors.ActiveSqlTransaction: CREATE DATABASE cannot run inside a transaction block
This happens because PostgreSQL itself will wrap multiple statements in a
transaction. Note that you will experience a different behaviour in
:program:`psql` (:program:`psql` will split the queries on semicolons and
send them to the server separately).
This is not new in Psycopg 3: the same limitation is present in
`!psycopg2` too.
.. _multi-results:
Multiple results returned from multiple statements
--------------------------------------------------
If more than one statement returning results is executed in psycopg2, only the
result of the last statement is returned::
>>> cur_pg2.execute("SELECT 1; SELECT 2")
>>> cur_pg2.fetchone()
(2,)
In Psycopg 3 instead, all the results are available. After running the query,
the first result will be readily available in the cursor and can be consumed
using the usual `!fetch*()` methods. In order to access the following
results, you can use the `Cursor.results()` method (or `~Cursor.nextset()`
before Psycopg 3.3)::
>>> cur_pg3.execute("SELECT 1; SELECT 2")
>>> for _ in cur_pg3.results():
... print(cur_pg3.fetchone())
(1,)
(2,)
Remember though that you cannot use server-side bindings to :ref:`execute more
than one statement in the same query <multi-statements>`, if you are passing
parameters to the query.
.. _difference-cast-rules:
Different cast rules
--------------------
In rare cases, especially around variadic functions, PostgreSQL might fail to
find a function candidate for the given data types::
>>> conn.execute("SELECT json_build_array(%s, %s)", ["foo", "bar"])
Traceback (most recent call last):
...
psycopg.errors.IndeterminateDatatype: could not determine data type of parameter $1
This can be worked around specifying the argument types explicitly via a cast::
>>> conn.execute("SELECT json_build_array(%s::text, %s::text)", ["foo", "bar"])
.. _in-and-tuple:
You cannot use ``IN %s`` with a tuple
-------------------------------------
``IN`` cannot be used with a tuple as single parameter, as was possible with
``psycopg2``::
>>> conn.execute("SELECT * FROM foo WHERE id IN %s", [(10,20,30)])
Traceback (most recent call last):
...
psycopg.errors.SyntaxError: syntax error at or near "$1"
LINE 1: SELECT * FROM foo WHERE id IN $1
^
What you can do is to use the `= ANY()`__ construct and pass the candidate
values as a list instead of a tuple, which will be adapted to a PostgreSQL
array::
>>> conn.execute("SELECT * FROM foo WHERE id = ANY(%s)", [[10,20,30]])
Note that `ANY()` can be used with `!psycopg2` too, and has the advantage of
accepting an empty list of values too as argument, which is not supported by
the :sql:`IN` operator instead.
.. __: https://www.postgresql.org/docs/current/functions-comparisons.html
#id-1.5.8.30.16
.. _is-null:
You cannot use ``IS %s``
------------------------
You cannot use :sql:`IS %s` or :sql:`IS NOT %s`::
>>> conn.execute("SELECT * FROM foo WHERE field IS %s", [None])
Traceback (most recent call last):
...
psycopg.errors.SyntaxError: syntax error at or near "$1"
LINE 1: SELECT * FROM foo WHERE field IS $1
^
This is probably caused by the fact that :sql:`IS` is not a binary predicate in
PostgreSQL; rather, :sql:`IS NULL` and :sql:`IS NOT NULL` are unary predicates
and you cannot use :sql:`IS` with anything else on the right hand side.
Testing in psql:
.. code:: text
=# SELECT 10 IS 10;
ERROR: syntax error at or near "10"
LINE 1: SELECT 10 IS 10;
^
What you can do is to use `IS [NOT] DISTINCT FROM`__ predicate instead:
:sql:`IS NOT DISTINCT FROM %s` can be used in place of :sql:`IS %s` (please
pay attention to the awkwardly reversed :sql:`NOT`)::
>>> conn.execute("SELECT * FROM foo WHERE field IS NOT DISTINCT FROM %s", [None])
.. __: https://www.postgresql.org/docs/current/functions-comparison.html
Analogously you can use :sql:`IS DISTINCT FROM %s` as a parametric version of
:sql:`IS NOT %s`.
.. _diff-cursors:
Cursors subclasses
------------------
In `!psycopg2`, a few cursor subclasses allowed to return data in different
form than tuples. In Psycopg 3 the same can be achieved by setting a :ref:`row
factory <row-factories>`:
- instead of `~psycopg2.extras.RealDictCursor` you can use
`~psycopg.rows.dict_row`;
- instead of `~psycopg2.extras.NamedTupleCursor` you can use
`~psycopg.rows.namedtuple_row`.
Other row factories are available in the `psycopg.rows` module. There isn't an
object behaving like `~psycopg2.extras.DictCursor` (whose results are
indexable both by column position and by column name).
.. code::
from psycopg.rows import dict_row, namedtuple_row
# By default, every cursor will return dicts.
conn = psycopg.connect(DSN, row_factory=dict_row)
# You can set a row factory on a single cursor too.
cur = conn.cursor(row_factory=namedtuple_row)
.. _diff-adapt:
Different adaptation system
---------------------------
The adaptation system has been completely rewritten, in order to address
server-side parameters adaptation, but also to consider performance,
flexibility, ease of customization.
The default behaviour with builtin data should be :ref:`what you would expect
<types-adaptation>`. If you have customised the way to adapt data, or if you
are managing your own extension types, you should look at the :ref:`new
adaptation system <adaptation>`.
.. seealso::
- :ref:`types-adaptation` for the basic behaviour.
- :ref:`adaptation` for more advanced use.
.. _diff-copy:
Copy is no longer file-based
----------------------------
`!psycopg2` exposes :ref:`a few copy methods <pg2:copy>` to interact with
PostgreSQL :sql:`COPY`. Their file-based interface doesn't make it easy to load
dynamically-generated data into a database.
There is now a single `~Cursor.copy()` method, which is similar to
`!psycopg2` `!copy_expert()` in accepting a free-form :sql:`COPY` command and
returns an object to read/write data, block-wise or record-wise. The different
usage pattern also enables :sql:`COPY` to be used in async interactions.
.. seealso:: See :ref:`copy` for the details.
.. _diff-with:
`!with` connection
------------------
In `!psycopg2`, using the syntax :ref:`with connection <pg2:with>`,
only the transaction is closed, not the connection. This behaviour is
surprising for people used to several other Python classes wrapping resources,
such as files.
In Psycopg 3, using :ref:`with connection <with-connection>` will close the
connection at the end of the `!with` block, making handling the connection
resources more familiar.
In order to manage transactions as blocks you can use the
`Connection.transaction()` method, which allows for finer control, for
instance to use nested transactions.
.. seealso:: See :ref:`transaction-context` for details.
.. _diff-callproc:
`!callproc()` is gone
---------------------
`cursor.callproc()` is not implemented. The method has a simplistic semantic
which doesn't account for PostgreSQL positional parameters, procedures,
set-returning functions... Use a normal `~Cursor.execute()` with :sql:`SELECT
function_name(...)` or :sql:`CALL procedure_name(...)` instead.
.. _diff-client-encoding:
`!client_encoding` is gone
--------------------------
Psycopg automatically uses the database client encoding to decode data to
Unicode strings. Use `ConnectionInfo.encoding` if you need to read the
encoding. You can select an encoding at connection time using the
`!client_encoding` connection parameter and you can change the encoding of a
connection by running a :sql:`SET client_encoding` statement... But why would
you?
.. _transaction-characteristics-and-autocommit:
Transaction characteristics attributes don't affect autocommit sessions
-----------------------------------------------------------------------
:ref:`Transactions characteristics attributes <transaction-characteristics>`
such as `~Connection.read_only` don't affect automatically autocommit
sessions: they only affect the implicit transactions started by non-autocommit
sessions and the transactions created by the `~Connection.transaction()`
block (for both autocommit and non-autocommit connections).
If you want to put an autocommit transaction in read-only mode, please use the
default_transaction_read_only__ GUC, for instance executing the statement
:sql:`SET default_transaction_read_only TO true`.
.. __: https://www.postgresql.org/docs/current/runtime-config-client.html
#GUC-DEFAULT-TRANSACTION-READ-ONLY
.. _infinity-datetime:
No default infinity dates handling
----------------------------------
PostgreSQL can represent a much wider range of dates and timestamps than
Python. While Python dates are limited to the years between 1 and 9999
(represented by constants such as `datetime.date.min` and
`~datetime.date.max`), PostgreSQL dates extend to BC dates and past the year
10K. Furthermore PostgreSQL can also represent symbolic dates "infinity", in
both directions.
In psycopg2, by default, `infinity dates and timestamps map to 'date.max'`__
and similar constants. This has the problem of creating a non-bijective
mapping (two Postgres dates, infinity and 9999-12-31, both map to the same
Python date). There is also the perversity that valid Postgres dates, greater
than Python `!date.max` but arguably lesser than infinity, will still
overflow.
In Psycopg 3, every date greater than year 9999 will overflow, including
infinity. If you would like to customize this mapping (for instance flattening
every date past Y10K on `!date.max`) you can subclass and adapt the
appropriate loaders: take a look at :ref:`this example
<adapt-example-inf-date>` to see how.
.. __: https://www.psycopg.org/docs/usage.html#infinite-dates-handling
.. _whats-new:
What's new in Psycopg 3
-----------------------
- :ref:`Asynchronous support <async>`
- :ref:`Server-side parameters binding <server-side-binding>`
- :ref:`Prepared statements <prepared-statements>`
- :ref:`Binary communication <binary-data>`
- :ref:`Python-based COPY support <copy>`
- :ref:`Support for static typing <static-typing>`
- :ref:`A redesigned connection pool <connection-pools>`
- :ref:`Direct access to the libpq functionalities <psycopg.pq>`
|