|
libpqxx
|
Iterator for fields in a row. Use as row::const_iterator. More...
#include <row.hxx>

Public Types | |
| using | size_type = row_size_type |
| using | difference_type = row_difference_type |
| using | reference = field |
Public Types inherited from pqxx::field | |
| using | size_type = field_size_type |
Public Member Functions | |
| const_row_iterator (const row &T, row_size_type C) noexcept | |
| const_row_iterator (const field &F) noexcept | |
Dereferencing operators | |
| pointer | operator-> () const |
| reference | operator* () const |
Manipulations | |
| const_row_iterator | operator++ (int) |
| const_row_iterator & | operator++ () |
| const_row_iterator | operator-- (int) |
| const_row_iterator & | operator-- () |
| const_row_iterator & | operator+= (difference_type i) |
| const_row_iterator & | operator-= (difference_type i) |
Comparisons | |
| bool | operator== (const const_row_iterator &i) const |
| bool | operator!= (const const_row_iterator &i) const |
| bool | operator< (const const_row_iterator &i) const |
| bool | operator<= (const const_row_iterator &i) const |
| bool | operator> (const const_row_iterator &i) const |
| bool | operator>= (const const_row_iterator &i) const |
Public Member Functions inherited from pqxx::field | |
| field (const row &R, row_size_type C) noexcept | |
| Constructor. More... | |
| template<> | |
| bool | to (const char *&Obj) const |
Specialization: to(const char *&). More... | |
| bool | operator== (const field &) const |
| Byte-by-byte comparison of two fields (all nulls are considered equal) More... | |
| bool | operator!= (const field &rhs) const |
| Byte-by-byte comparison (all nulls are considered equal) More... | |
| const char * | name () const |
| Column name. More... | |
| oid | type () const |
| Column type. More... | |
| oid | table () const |
| What table did this column come from? More... | |
| row_size_type | num () const |
| row_size_type | table_column () const |
| What column number in its originating table did this column come from? More... | |
| const char * | c_str () const |
| Read as plain C string. More... | |
| bool | is_null () const noexcept |
| Is this field's value null? More... | |
| size_type | size () const noexcept |
| Return number of bytes taken up by the field's value. More... | |
| template<typename T > | |
| bool | to (T &Obj) const |
Read value into Obj; or leave Obj untouched and return false if null. 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 > | |
| bool | to (T &Obj, const T &Default) const |
Read value into Obj; or use Default & return false if null. More... | |
| template<typename T > | |
| T | as (const T &Default) const |
| Return value as object of given type, or Default if null. More... | |
| template<typename T > | |
| T | as () const |
| Return value as object of given type, or throw exception if null. More... | |
| array_parser | as_array () const |
| Parse the field as an SQL array. More... | |
Arithmetic operators | |
| const_row_iterator | operator+ (difference_type) const |
| const_row_iterator | operator- (difference_type) const |
| difference_type | operator- (const_row_iterator) const |
| const_row_iterator | operator+ (difference_type, const_row_iterator) |
Additional Inherited Members | |
Protected Member Functions inherited from pqxx::field | |
| const result & | home () const noexcept |
| size_t | idx () const noexcept |
| row_size_type | col () const noexcept |
Protected Attributes inherited from pqxx::field | |
| long | m_col |
Iterator for fields in a row. Use as row::const_iterator.
|
noexcept |
|
noexcept |
| bool pqxx::const_row_iterator::operator!= | ( | const const_row_iterator & | i | ) | const |
| reference pqxx::const_row_iterator::operator* | ( | ) | const |
| const_row_iterator pqxx::const_row_iterator::operator+ | ( | difference_type | o | ) | const |
| pqxx::const_row_iterator pqxx::const_row_iterator::operator++ | ( | int | ) |
| const_row_iterator& pqxx::const_row_iterator::operator++ | ( | ) |
| const_row_iterator& pqxx::const_row_iterator::operator+= | ( | difference_type | i | ) |
| const_row_iterator pqxx::const_row_iterator::operator- | ( | difference_type | o | ) | const |
| const_row_iterator::difference_type pqxx::const_row_iterator::operator- | ( | const_row_iterator | i | ) | const |
References pqxx::field::num().
| pqxx::const_row_iterator pqxx::const_row_iterator::operator-- | ( | int | ) |
| const_row_iterator& pqxx::const_row_iterator::operator-- | ( | ) |
| const_row_iterator& pqxx::const_row_iterator::operator-= | ( | difference_type | i | ) |
| pointer pqxx::const_row_iterator::operator-> | ( | ) | const |
| bool pqxx::const_row_iterator::operator< | ( | const const_row_iterator & | i | ) | const |
| bool pqxx::const_row_iterator::operator<= | ( | const const_row_iterator & | i | ) | const |
| bool pqxx::const_row_iterator::operator== | ( | const const_row_iterator & | i | ) | const |
| bool pqxx::const_row_iterator::operator> | ( | const const_row_iterator & | i | ) | const |
| bool pqxx::const_row_iterator::operator>= | ( | const const_row_iterator & | i | ) | const |
References pqxx::operator+().
|
friend |