16 #include "pqxx/compiler-public.hxx" 17 #include "pqxx/internal/compiler-internal-pre.hxx" 23 #include "pqxx/except.hxx" 24 #include "pqxx/types.hxx" 25 #include "pqxx/util.hxx" 26 #include "pqxx/zview.hxx" 28 #include "pqxx/internal/encodings.hxx" 39 class result_connection;
40 class result_creation;
41 class result_pipeline;
43 class result_sql_cursor;
83 m_data(make_data_pointer()),
85 m_encoding(internal::encoding_group::MONOBYTE)
95 [[nodiscard]]
bool operator==(
result const &)
const noexcept;
98 return not operator==(rhs);
109 template<
typename... TYPE>
auto iter()
const;
111 [[nodiscard]] const_reverse_iterator rbegin()
const;
112 [[nodiscard]] const_reverse_iterator crbegin()
const;
113 [[nodiscard]] const_reverse_iterator rend()
const;
114 [[nodiscard]] const_reverse_iterator crend()
const;
116 [[nodiscard]] const_iterator begin() const noexcept;
117 [[nodiscard]] const_iterator cbegin() const noexcept;
118 [[nodiscard]] inline const_iterator end() const noexcept;
119 [[nodiscard]] inline const_iterator cend() const noexcept;
121 [[nodiscard]] reference front() const noexcept;
122 [[nodiscard]] reference back() const noexcept;
124 [[nodiscard]] PQXX_PURE size_type size() const noexcept;
125 [[nodiscard]] PQXX_PURE
bool empty() const noexcept;
126 [[nodiscard]]
size_type capacity() const noexcept {
return size(); }
128 void swap(
result &) noexcept;
130 [[nodiscard]]
row operator[](size_type i)
const noexcept;
131 row at(size_type)
const;
143 [[nodiscard]] PQXX_PURE
row_size_type columns() const noexcept;
150 [[nodiscard]]
char const *column_name(
row_size_type number) const;
156 [[nodiscard]] oid column_type(
zview col_name)
const 158 return column_type(column_number(col_name));
167 return column_table(column_number(col_name));
176 return table_column(column_number(col_name));
181 [[nodiscard]] PQXX_PURE std::string
const &query() const noexcept;
187 [[nodiscard]] PQXX_PURE oid inserted_oid() const;
194 [[nodiscard]] PQXX_PURE size_type affected_rows() const;
198 using data_pointer =
std::shared_ptr<internal::pq::PGresult const>;
205 make_data_pointer(internal::pq::PGresult const *res =
nullptr)
210 friend class pqxx::internal::gate::result_pipeline;
211 PQXX_PURE std::shared_ptr<std::string> query_ptr() const noexcept
217 std::shared_ptr<std::string> m_query;
219 internal::encoding_group m_encoding;
221 static std::string
const s_empty_string;
229 friend class pqxx::internal::gate::result_creation;
231 internal::pq::PGresult *rhs, std::shared_ptr<std::string> query,
232 internal::encoding_group enc);
234 PQXX_PRIVATE
void check_status()
const;
236 friend class pqxx::internal::gate::result_connection;
237 friend class pqxx::internal::gate::result_row;
238 bool operator!() const noexcept {
return m_data.get() ==
nullptr; }
239 operator bool() const noexcept {
return m_data.get() !=
nullptr; }
241 [[noreturn]] PQXX_PRIVATE
void 242 ThrowSQLError(std::string
const &Err, std::string
const &Query)
const;
243 PQXX_PRIVATE PQXX_PURE
int errorposition()
const;
244 PQXX_PRIVATE std::string StatusError()
const;
246 friend class pqxx::internal::gate::result_sql_cursor;
247 PQXX_PURE
char const *cmd_status() const noexcept;
251 #include "pqxx/internal/compiler-internal-post.hxx" Marker-type wrapper: zero-terminated std::string_view.
Definition: zview.hxx:36
int result_difference_type
Difference between result sizes.
Definition: types.hxx:21
Definition: connection.hxx:94
bool operator!=(result const &rhs) const noexcept
Definition: result.hxx:96
Reverse iterator for result. Use as result::const_reverse_iterator.
Definition: result_iterator.hxx:174
oid column_table(zview col_name) const
What table did this column come from?
Definition: result.hxx:165
void clear_result(pq::PGresult const *)
C++ wrapper for libpq's PQclear.
Definition: result.cxx:35
Reference to a field in a result set.
Definition: field.hxx:33
std::size_t field_size_type
Number of bytes in a field of database data.
Definition: types.hxx:30
result_difference_type difference_type
Definition: result.hxx:74
Private namespace for libpqxx's internal use; do not access.
Definition: composite.hxx:70
result() noexcept
Definition: result.hxx:82
int row_size_type
Number of fields in a row of database data.
Definition: types.hxx:24
Iterator for rows in a result. Use as result::const_iterator.
Definition: result_iterator.hxx:35
int result_size_type
Number of rows in a result set.
Definition: types.hxx:18
result_size_type size_type
Definition: result.hxx:73
The home of all libpqxx classes, functions, templates, etc.
Definition: array.hxx:25
Reference to one row in a result.
Definition: row.hxx:43
row_size_type table_column(zview col_name) const
What column in its table did this column come from?
Definition: result.hxx:174
void clear() noexcept
Definition: result.hxx:133
row_size_type col() const noexcept
Definition: field.hxx:232
Result set containing data returned by a query or command.
Definition: result.hxx:70