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
|
Query methods
=============
.. py:currentmodule:: pg
.. class:: Query
The :class:`Query` object returned by :meth:`Connection.query` and
:meth:`DB.query` provides the following methods for accessing
the results of the query:
getresult -- get query values as list of tuples
-----------------------------------------------
.. method:: Query.getresult()
Get query values as list of tuples
:returns: result values as a list of tuples
:rtype: list
:raises TypeError: too many (any) parameters
:raises MemoryError: internal memory error
This method returns the list of the values returned by the query.
More information about this result may be accessed using
:meth:`Query.listfields`, :meth:`Query.fieldname`
and :meth:`Query.fieldnum` methods.
Note that since PyGreSQL 5.0 this will return the values of array type
columns as Python lists.
dictresult -- get query values as list of dictionaries
------------------------------------------------------
.. method:: Query.dictresult()
Get query values as list of dictionaries
:returns: result values as a list of dictionaries
:rtype: list
:raises TypeError: too many (any) parameters
:raises MemoryError: internal memory error
This method returns the list of the values returned by the query
with each tuple returned as a dictionary with the field names
used as the dictionary index.
Note that since PyGreSQL 5.0 this will return the values of array type
columns as Python lists.
namedresult -- get query values as list of named tuples
-------------------------------------------------------
.. method:: Query.namedresult()
Get query values as list of named tuples
:returns: result values as a list of named tuples
:rtype: list
:raises TypeError: too many (any) parameters
:raises TypeError: named tuples not supported
:raises MemoryError: internal memory error
This method returns the list of the values returned by the query
with each row returned as a named tuple with proper field names.
Note that since PyGreSQL 5.0 this will return the values of array type
columns as Python lists.
.. versionadded:: 4.1
listfields -- list fields names of previous query result
--------------------------------------------------------
.. method:: Query.listfields()
List fields names of previous query result
:returns: field names
:rtype: list
:raises TypeError: too many parameters
This method returns the list of names of the fields defined for the
query result. The fields are in the same order as the result values.
fieldname, fieldnum -- field name/number conversion
---------------------------------------------------
.. method:: Query.fieldname(num)
Get field name from its number
:param int num: field number
:returns: field name
:rtype: str
:raises TypeError: invalid connection, bad parameter type, or too many parameters
:raises ValueError: invalid field number
This method allows to find a field name from its rank number. It can be
useful for displaying a result. The fields are in the same order as the
result values.
.. method:: Query.fieldnum(name)
Get field number from its name
:param str name: field name
:returns: field number
:rtype: int
:raises TypeError: invalid connection, bad parameter type, or too many parameters
:raises ValueError: unknown field name
This method returns a field number from its name. It can be used to
build a function that converts result list strings to their correct
type, using a hardcoded table definition. The number returned is the
field rank in the result values list.
ntuples -- return number of tuples in query object
--------------------------------------------------
.. method:: Query.ntuples()
Return number of tuples in query object
:returns: number of tuples in :class:`Query`
:rtype: int
:raises TypeError: Too many arguments.
This method returns the number of tuples found in a query.
|