libpqxx  7.5.1
pqxx::field Class Reference

Reference to a field in a result set. More...

#include <field.hxx>

Inheritance diagram for pqxx::field:

Public Types

using size_type = field_size_type
 

Public Member Functions

Do not construct fields yourself Get them from the row field (row const &r, row_size_type c) noexcept
 Constructor. Do not call this yourself; libpqxx will do it for you. More...
 
Do not construct fields yourself Get them from the row field ()=default
 Constructor. Do not call this yourself; libpqxx will do it for you. More...
 
template<>
bool to (char const *&obj) const
 Specialization: to(char const *&). More...
 
template<>
bool to (zview &obj) const
 
template<>
bool to (zview &obj, zview const &default_value) const
 
template<>
zview as () const
 
template<>
zview as (zview const &default_value) const
 
Comparison
PQXX_PURE bool operator== (field const &) const
 Byte-by-byte comparison of two fields (all nulls are considered equal) More...
 
PQXX_PURE bool operator!= (field const &rhs) const
 Byte-by-byte comparison (all nulls are considered equal) More...
 
Column information
PQXX_PURE char const * name () const
 Column name. More...
 
oid PQXX_PURE type () const
 Column type. More...
 
PQXX_PURE oid table () const
 What table did this column come from? More...
 
PQXX_PURE row_size_type num () const
 Return row number. The first row is row 0, the second is row 1, etc. More...
 
PQXX_PURE row_size_type table_column () const
 What column number in its originating table did this column come from? More...
 
Content access
PQXX_PURE std::string_view view () const
 Read as string_view, or an empty one if null. More...
 
PQXX_PURE char const * c_str () const
 Read as plain C string. More...
 
PQXX_PURE bool is_null () const noexcept
 Is this field's value null? More...
 
PQXX_PURE size_type size () const noexcept
 Return number of bytes taken up by the field's value. More...
 
template<typename T >
auto to (T &obj) const -> typename std::enable_if_t<(not std::is_pointer< T >::value or std::is_same< T, char const *>::value), bool >
 Read value into obj; or if null, leave obj untouched and return false. More...
 
template<typename... T>
bool composite_to (T &...fields) const
 Read field as a composite value, write its components into fields. More...
 
template<typename T >
bool operator>> (T &obj) const
 Read value into obj; or leave obj untouched and return false if null. More...
 
template<typename T >
auto to (T &obj, T const &default_value) const -> typename std::enable_if_t<(not std::is_pointer< T >::value or std::is_same< T, char const *>::value), bool >
 Read value into obj; or if null, use default value and return false. More...
 
template<typename T >
as (T const &default_value) const
 Return value as object of given type, or default value if null. More...
 
template<typename T >
as () const
 Return value as object of given type, or throw exception if null. More...
 
template<typename T , template< typename > class O = std::optional>
constexpr O< T > get () const
 Return value wrapped in some optional type (empty for nulls). More...
 
array_parser as_array () const
 Parse the field as an SQL array. More...
 

Protected Member Functions

result const & home () const noexcept
 
result::size_type idx () const noexcept
 
row_size_type col () const noexcept
 

Protected Attributes

row_size_type m_col
 

Detailed Description

Reference to a field in a result set.

A field represents one entry in a row. It represents an actual value in the result set, and can be converted to various types.

Member Typedef Documentation

◆ size_type

Constructor & Destructor Documentation

◆ field() [1/2]

pqxx::field::field ( pqxx::row const &  r,
row_size_type  c 
)
noexcept

Constructor. Do not call this yourself; libpqxx will do it for you.

Create field as reference to a field in a result set.

Parameters
rRow that this field is part of.
cColumn number of this field.

Implementation of the pqxx::field class.

pqxx::field refers to a field in a query result.

Copyright (c) 2000-2021, Jeroen T. Vermeulen.

See COPYING for copyright license. If you did not receive a file called COPYING with this source code, please notify the distributor of this mistake, or contact the author.

References pqxx::row::m_result.

◆ field() [2/2]

Do not construct fields yourself Get them from the row pqxx::field::field ( )
default

Constructor. Do not call this yourself; libpqxx will do it for you.

Member Function Documentation

◆ as() [1/4]

template<typename T >
T pqxx::field::as ( T const &  default_value) const

Return value as object of given type, or default value if null.

Note that unless the function is instantiated with an explicit template argument, the Default value's type also determines the result type.

References pqxx::is_null().

Referenced by pqxx::connection::get_variable().

◆ as() [2/4]

template<typename T >
T pqxx::field::as ( ) const

Return value as object of given type, or throw exception if null.

Use as as<std::optional<int>>() or as<my_untemplated_optional_t>() as an alternative to get<int>(); this is disabled for use with raw pointers (other than C-strings) because storage for the value can't safely be allocated here

References pqxx::is_null(), pqxx::nullness< TYPE, ENABLE >::null(), and pqxx::internal::throw_null_conversion().

◆ as() [3/4]

template<>
zview pqxx::field::as ( ) const

◆ as() [4/4]

template<>
zview pqxx::field::as ( zview const &  default_value) const

References pqxx::is_null().

◆ as_array()

array_parser pqxx::field::as_array ( ) const

Parse the field as an SQL array.

Call the parser to retrieve values (and structure) from the array.

Make sure the result object stays alive until parsing is finished. If you keep the row of field object alive, it will keep the result object alive as well.

◆ c_str()

char const * pqxx::field::c_str ( ) const

Read as plain C string.

Since the field's data is stored internally in the form of a zero-terminated C string, this is the fastest way to read it. Use the to() or as() functions to convert the string to other types such as int, or to C++ strings.

Do not use this for BYTEA values, or other binary values. To read those, convert the value to your desired type using to() or as(). For example: f.as<std::basic_string<std::byte>>().

References col(), home(), and idx().

Referenced by pqxx::binarystring::binarystring(), pqxx::icursorstream::icursorstream(), operator==(), pqxx::to_string(), and pqxx::field_streambuf< CHAR, TRAITS >::underflow().

◆ col()

◆ composite_to()

template<typename... T>
bool pqxx::field::composite_to ( T &...  fields) const

Read field as a composite value, write its components into fields.

Warning
This is still experimental. It may change or be replaced.

Returns whether the field was null. If it was, it will not touch the values in fields.

References pqxx::is_null(), and pqxx::parse_composite().

◆ get()

template<typename T , template< typename > class O = std::optional>
constexpr O<T> pqxx::field::get ( ) const

Return value wrapped in some optional type (empty for nulls).

Use as get<int>() as before to obtain previous behavior, or specify container type with get<int, std::optional>()

◆ home()

result const& pqxx::field::home ( ) const
protectednoexcept

◆ idx()

result::size_type pqxx::field::idx ( ) const
protectednoexcept

Referenced by c_str(), is_null(), and size().

◆ is_null()

bool pqxx::field::is_null ( ) const
noexcept

Is this field's value null?

References col(), home(), and idx().

Referenced by pqxx::from_string(), and operator==().

◆ name()

char const * pqxx::field::name ( ) const

Column name.

References col(), pqxx::result::column_name(), and home().

◆ num()

PQXX_PURE row_size_type pqxx::field::num ( ) const

Return row number. The first row is row 0, the second is row 1, etc.

References pqxx::is_null().

Referenced by pqxx::const_row_iterator::operator-().

◆ operator!=()

PQXX_PURE bool pqxx::field::operator!= ( field const &  rhs) const

Byte-by-byte comparison (all nulls are considered equal)

Warning
See operator==() for important information about this operator

◆ operator==()

bool pqxx::field::operator== ( field const &  rhs) const

Byte-by-byte comparison of two fields (all nulls are considered equal)

Warning
null handling is still open to discussion and change!

Handling of null values differs from that in SQL where a comparison involving a null value yields null, so nulls are never considered equal to one another or even to themselves.

Null handling also probably differs from the closest equivalent in C++, which is the NaN (Not-a-Number) value, a singularity comparable to SQL's null. This is because the builtin == operator demands that a == a.

The usefulness of this operator is questionable. No interpretation whatsoever is imposed on the data; 0 and 0.0 are considered different, as are null vs. the empty string, or even different (but possibly equivalent and equally valid) encodings of the same Unicode character etc.

References c_str(), is_null(), and size().

◆ operator>>()

template<typename T >
bool pqxx::field::operator>> ( T &  obj) const

Read value into obj; or leave obj untouched and return false if null.

◆ size()

pqxx::field::size_type pqxx::field::size ( ) const
noexcept

Return number of bytes taken up by the field's value.

References col(), home(), and idx().

Referenced by operator==().

◆ table()

pqxx::oid pqxx::field::table ( ) const

What table did this column come from?

References col(), pqxx::result::column_table(), and home().

◆ table_column()

pqxx::row::size_type pqxx::field::table_column ( ) const

What column number in its originating table did this column come from?

References col(), home(), and pqxx::result::table_column().

◆ to() [1/5]

template<typename T >
auto pqxx::field::to ( T &  obj) const -> typename std::enable_if_t< (not std::is_pointer<T>::value or std::is_same<T, char const *>::value), bool>

Read value into obj; or if null, leave obj untouched and return false.

This can be used with optional types (except pointers other than C-style strings).

References pqxx::from_string(), and pqxx::is_null().

◆ to() [2/5]

template<typename T >
auto pqxx::field::to ( T &  obj,
T const &  default_value 
) const -> typename std::enable_if_t< (not std::is_pointer<T>::value or std::is_same<T, char const *>::value), bool>

Read value into obj; or if null, use default value and return false.

This can be used with std::optional, as well as with standard smart pointer types, but not with raw pointers. If the conversion from a PostgreSQL string representation allocates a pointer (e.g. using new), then the object's later deallocation should be baked in as well, right from the point where the object is created. So if you want a pointer, use a smart pointer, not a raw pointer.

There is one exception, of course: C-style strings. Those are just pointers to the field's internal text data.

References pqxx::is_null().

◆ to() [3/5]

template<>
bool pqxx::field::to ( char const *&  obj) const

Specialization: to(char const *&).

The buffer has the same lifetime as the data in this result (i.e. of this result object, or the last remaining one copied from it etc.), so take care not to use it after the last result object referring to this query result is destroyed.

References pqxx::is_null().

◆ to() [4/5]

template<>
bool pqxx::field::to ( zview obj) const

References pqxx::is_null().

◆ to() [5/5]

template<>
bool pqxx::field::to ( zview obj,
zview const &  default_value 
) const

References pqxx::is_null().

◆ type()

pqxx::oid pqxx::field::type ( ) const

Column type.

References col(), pqxx::result::column_type(), and home().

◆ view()

PQXX_PURE std::string_view pqxx::field::view ( ) const

Read as string_view, or an empty one if null.

Referenced by pqxx::from_string().

Member Data Documentation

◆ m_col

row_size_type pqxx::field::m_col
protected

You'd expect this to be unsigned, but due to the way reverse iterators are related to regular iterators, it must be allowed to underflow to -1.


The documentation for this class was generated from the following files: