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