|
| | result () noexcept |
| |
| | result (result const &rhs) noexcept=default |
| |
| | result (result &&rhs) noexcept=default |
| |
| result & | operator= (result const &rhs) noexcept=default |
| | Assign one result to another. More...
|
| |
| result & | operator= (result &&rhs) noexcept=default |
| | Assign one result to another, invaliding the old one. More...
|
| |
| template<typename... TYPE> |
| auto | iter () const |
| | Iterate rows, reading them directly into a tuple of "TYPE...". More...
|
| |
| const_reverse_iterator | rbegin () const |
| |
| const_reverse_iterator | crbegin () const |
| |
| const_reverse_iterator | rend () const |
| |
| const_reverse_iterator | crend () const |
| |
| const_iterator | begin () const noexcept |
| |
| const_iterator | cbegin () const noexcept |
| |
| const_iterator | end () const noexcept |
| |
| const_iterator | cend () const noexcept |
| |
| reference | front () const noexcept |
| |
| reference | back () const noexcept |
| |
| PQXX_PURE size_type | size () const noexcept |
| |
| PQXX_PURE bool | empty () const noexcept |
| |
| size_type | capacity () const noexcept |
| |
| void | swap (result &) noexcept |
| | Exchange two result values in an exception-safe manner. More...
|
| |
| row | operator[] (size_type i) const noexcept |
| | Index a row by number. More...
|
| |
| row | at (size_type) const |
| | Index a row by number, but check that the row number is valid. More...
|
| |
| field | at (size_type, row_size_type) const |
| | Index a field by row number and column number. More...
|
| |
| void | clear () noexcept |
| | Let go of the result's data. More...
|
| |
| PQXX_PURE std::string const & | query () const &noexcept |
| | Query that produced this result, if available (empty string otherwise) More...
|
| |
| PQXX_PURE oid | inserted_oid () const |
| | If command was an INSERT of 1 row, return oid of the inserted row. More...
|
| |
| PQXX_PURE size_type | affected_rows () const |
| | If command was INSERT, UPDATE, or DELETE: number of affected rows. More...
|
| |
| template<typename CALLABLE > |
| void | for_each (CALLABLE &&func) const |
| | Run func on each row, passing the row's fields as parameters. More...
|
| |
| result | expect_rows (size_type n) const |
| | Check that result contains exactly n rows. More...
|
| |
| row | one_row () const |
| | Check that result contains exactly 1 row, and return that row. More...
|
| |
| std::optional< row > | opt_row () const |
| | Expect that result contains at moost one row, and return as optional. More...
|
| |
| result | no_rows () const |
| | Expect that result contains no rows. Return result for convenience. More...
|
| |
| result | expect_columns (row_size_type cols) const |
| | Expect that result consists of exactly cols columns. More...
|
| |
| field | one_field () const |
| | Expect that result consists of exactly 1 row and 1 column. More...
|
| |
|
You can compare results for equality. Beware: this is a very strict, dumb comparison. The smallest difference between two results (such as a string "Foo" versus a string "foo") will make them unequal.
|
| bool | operator== (result const &) const noexcept |
| | Compare two results for equality. More...
|
| |
| bool | operator!= (result const &rhs) const noexcept |
| | Compare two results for inequality. More...
|
| |
|
| PQXX_PURE row_size_type | columns () const noexcept |
| | Number of columns in result. More...
|
| |
| row_size_type | column_number (zview name) const |
| | Number of given column (throws exception if it doesn't exist). More...
|
| |
| char const * | column_name (row_size_type number) const & |
| | Name of column with this number (throws exception if it doesn't exist) More...
|
| |
| int | column_storage (row_size_type number) const |
| | Server-side storage size for field of column's type, in bytes. More...
|
| |
| int | column_type_modifier (row_size_type number) const noexcept |
| | Type modifier of the column with this number. More...
|
| |
| oid | column_type (row_size_type col_num) const |
| | Return column's type, as an OID from the system catalogue. More...
|
| |
| oid | column_type (zview col_name) const |
| | Return column's type, as an OID from the system catalogue. More...
|
| |
| oid | column_table (row_size_type col_num) const |
| | What table did this column come from? More...
|
| |
| oid | column_table (zview col_name) const |
| | What table did this column come from? More...
|
| |
| row_size_type | table_column (row_size_type col_num) const |
| | What column in its table did this column come from? More...
|
| |
| row_size_type | table_column (zview col_name) const |
| | What column in its table did this column come from? More...
|
| |
Result set containing data returned by a query or command.
This behaves as a container (as defined by the C++ standard library) and provides random access const iterators to iterate over its rows. You can also access a row by indexing a result R by the row's zero-based number:
template<typename CALLABLE >
| void pqxx::result::for_each |
( |
CALLABLE && |
func | ) |
const |
|
inline |
Run func on each row, passing the row's fields as parameters.
Goes through the rows from first to last. You provide a callable func.
For each row in the result, for_each will call func. It converts the row's fields to the types of func's parameters, and pass them to func.
(Therefore func must have a single signature. It can't be a generic lambda, or an object of a class with multiple overloaded function call operators. Otherwise, for_each will have no way to detect a parameter list without ambiguity.)
If any of your parameter types is std::string_view, it refers to the underlying storage of this result.
If any of your parameter types is a reference type, its argument will refer to a temporary value which only lives for the duration of that single invocation to func. If the reference is an lvalue reference, it must be const.
For example, this queries employee names and salaries from the database and prints how much each would like to earn instead:
- ```cxx tx.exec("SELECT name, salary FROM employee").for_each( [](std::string_view name, float salary){ std::cout << name << " would like " << salary * 2 << ".\n"; })
```
If func throws an exception, processing stops at that point and propagates the exception.
- Exceptions
-
| pqxx::usage_error | if func's number of parameters does not match the number of columns in this result. |
The parameter types must have conversions from PostgreSQL's string format defined; see Supporting additional data types.