mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-11 03:26:37 +03:00
Added index entries under Adaptation for different objects.
This commit is contained in:
parent
2dae07a796
commit
593cd20b4a
|
@ -208,9 +208,9 @@ In the following examples the method `~cursor.mogrify()` is used to show
|
||||||
the SQL string that would be sent to the database.
|
the SQL string that would be sent to the database.
|
||||||
|
|
||||||
.. index::
|
.. index::
|
||||||
single: None; Adaptation
|
pair: None; Adaptation
|
||||||
single: NULL; Adaptation
|
single: NULL; Adaptation
|
||||||
single: Boolean; Adaptation
|
pair: Boolean; Adaptation
|
||||||
|
|
||||||
- Python ``None`` and boolean values are converted into the proper SQL
|
- Python ``None`` and boolean values are converted into the proper SQL
|
||||||
literals::
|
literals::
|
||||||
|
@ -219,6 +219,7 @@ the SQL string that would be sent to the database.
|
||||||
>>> 'SELECT NULL, true, false;'
|
>>> 'SELECT NULL, true, false;'
|
||||||
|
|
||||||
.. index::
|
.. index::
|
||||||
|
single: Adaptation; numbers
|
||||||
single: Integer; Adaptation
|
single: Integer; Adaptation
|
||||||
single: Float; Adaptation
|
single: Float; Adaptation
|
||||||
single: Decimal; Adaptation
|
single: Decimal; Adaptation
|
||||||
|
@ -230,7 +231,7 @@ the SQL string that would be sent to the database.
|
||||||
>>> 'SELECT 10, 10, 10.0, 10.00;'
|
>>> 'SELECT 10, 10, 10.0, 10.00;'
|
||||||
|
|
||||||
.. index::
|
.. index::
|
||||||
single: Strings; Adaptation
|
pair: Strings; Adaptation
|
||||||
single: Unicode; Adaptation
|
single: Unicode; Adaptation
|
||||||
single: Buffer; Adaptation
|
single: Buffer; Adaptation
|
||||||
single: bytea; Adaptation
|
single: bytea; Adaptation
|
||||||
|
@ -243,6 +244,7 @@ the SQL string that would be sent to the database.
|
||||||
:ref:`unicode-handling`.
|
:ref:`unicode-handling`.
|
||||||
|
|
||||||
.. index::
|
.. index::
|
||||||
|
single: Adaptation; Date/Time objects
|
||||||
single: Date objects; Adaptation
|
single: Date objects; Adaptation
|
||||||
single: Time objects; Adaptation
|
single: Time objects; Adaptation
|
||||||
single: Interval objects; Adaptation
|
single: Interval objects; Adaptation
|
||||||
|
@ -266,7 +268,7 @@ the SQL string that would be sent to the database.
|
||||||
|
|
||||||
.. index::
|
.. index::
|
||||||
single: Array; Adaptation
|
single: Array; Adaptation
|
||||||
single: Lists; Adaptation
|
double: Lists; Adaptation
|
||||||
|
|
||||||
- Python lists are converted into PostgreSQL :sql:`ARRAY`\ s::
|
- Python lists are converted into PostgreSQL :sql:`ARRAY`\ s::
|
||||||
|
|
||||||
|
@ -274,7 +276,7 @@ the SQL string that would be sent to the database.
|
||||||
'SELECT ARRAY[10, 20, 30];'
|
'SELECT ARRAY[10, 20, 30];'
|
||||||
|
|
||||||
.. index::
|
.. index::
|
||||||
single: Tuple; Adaptation
|
double: Tuple; Adaptation
|
||||||
single: IN operator
|
single: IN operator
|
||||||
|
|
||||||
- Python tuples are converted in a syntax suitable for the SQL :sql:`IN`
|
- Python tuples are converted in a syntax suitable for the SQL :sql:`IN`
|
||||||
|
|
Loading…
Reference in New Issue
Block a user