libpqxx
The C++ client library for PostgreSQL
result-sql_cursor.hxx
1 #include <pqxx/internal/callgate.hxx>
2 
3 namespace pqxx::internal::gate
4 {
5 class PQXX_PRIVATE result_sql_cursor : callgate<result const>
6 {
7  friend class pqxx::internal::sql_cursor;
8 
10 
11  char const *cmd_status() const noexcept { return home().cmd_status(); }
12 };
13 } // namespace pqxx::internal::gate
result const & reference
A reference to the host class. Helps keep constructors easy.
Definition: callgate.hxx:60
Definition: connection.hxx:106
Base class for call gates.
Definition: callgate.hxx:54
Cursor with SQL positioning semantics.
Definition: sql_cursor.hxx:31
Definition: result-sql_cursor.hxx:5