12 friend class pqxx::transaction_base;
16 template<
typename STRING>
result exec(STRING query, std::string_view desc)
18 return home().exec(query, desc);
21 void register_transaction(transaction_base *t)
23 home().register_transaction(t);
25 void unregister_transaction(transaction_base *t)
noexcept
27 home().unregister_transaction(t);
30 auto read_copy_line() {
return home().read_copy_line(); }
31 void write_copy_line(std::string_view line) { home().write_copy_line(line); }
32 void end_copy_write() { home().end_copy_write(); }
36 return home().exec_prepared(statement, args);
41 return home().exec_params(query, args);
The home of all libpqxx classes, functions, templates, etc.
Definition array.cxx:27