1#include "pqxx/internal/libpq-forward.hxx"
2#include <pqxx/internal/callgate.hxx>
4#include "pqxx/pipeline.hxx"
6namespace pqxx::internal::gate
14 void start_exec(
char const query[]) { home().start_exec(query); }
15 pqxx::internal::pq::PGresult *get_result() {
return home().get_result(); }
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(); }
Connection to a database.
Definition: connection.hxx:230
Base class for call gates.
Definition: callgate.hxx:55
Definition: connection-pipeline.hxx:9
Processes several queries in FIFO manner, optimized for high throughput.
Definition: pipeline.hxx:51