13 #ifndef PQXX_H_NONTRANSACTION
14 #define PQXX_H_NONTRANSACTION
16 #include "pqxx/compiler-public.hxx"
17 #include "pqxx/internal/compiler-internal-pre.hxx"
19 #include "pqxx/connection.hxx"
20 #include "pqxx/result.hxx"
21 #include "pqxx/transaction.hxx"
25 using namespace std::literals;
66 register_transaction();
72 virtual void do_commit()
override {}
76 #include "pqxx/internal/compiler-internal-post.hxx"
The home of all libpqxx classes, functions, templates, etc.
Definition: array.hxx:26
Connection to a database.
Definition: connection.hxx:184
Simple "transaction" class offering no transactional integrity.
Definition: nontransaction.hxx:55
nontransaction(connection &c, std::string_view tname=""sv)
Constructor.
Definition: nontransaction.hxx:63
virtual ~nontransaction() override
Definition: nontransaction.hxx:69
Interface definition (and common code) for "transaction" classes.
Definition: transaction_base.hxx:75