libpqxx
The C++ client library for PostgreSQL
Loading...
Searching...
No Matches
connection-sql_cursor.hxx
Go to the documentation of this file.
2
3namespace pqxx::internal
4{
5class sql_cursor;
6}
7
8
10{
11class PQXX_PRIVATE connection_sql_cursor : callgate<connection>
12{
14
15 connection_sql_cursor(reference x) : super(x) {}
16
17 result exec(char const query[]) { return home().exec(query); }
18};
19} // namespace pqxx::internal::gate
connection & reference
Definition callgate.hxx:60
callgate(reference x)
Definition callgate.hxx:62
callgate< connection > super
Definition callgate.hxx:58
Cursor with SQL positioning semantics.
Definition sql_cursor.hxx:32
Result set containing data returned by a query or command.
Definition result.hxx:93
#define PQXX_PRIVATE
Definition header-pre.hxx:158
Definition connection.hxx:108
Internal items for libpqxx' own use. Do not use these yourself.
Definition encodings.cxx:33