8class PQXX_PRIVATE connection_pipeline : callgate<connection>
10 friend class pqxx::pipeline;
12 connection_pipeline(reference x) : super(x) {}
14 void start_exec(
char const query[]) { home().start_exec(query); }
16 void cancel_query() { home().cancel_query(); }
18 bool consume_input() noexcept {
return home().consume_input(); }
19 bool is_busy() const noexcept {
return home().is_busy(); }
21 int encoding_id() {
return home().encoding_id(); }
23 auto get_notice_waiters()
const {
return home().m_notice_waiters; }
Definition connection.hxx:108
pg_result PGresult
Definition libpq-forward.hxx:25