Files
BackOne/ext/libpqxx-7.7.3/test/test14.cxx
proitlab dbdc5bcc4a
Some checks failed
/ build_macos (push) Has been cancelled
/ build_windows (push) Has been cancelled
/ build_ubuntu (push) Has been cancelled
First Commit
2025-11-19 16:23:45 +07:00

37 lines
946 B
C++

#include <iostream>
#include <pqxx/nontransaction>
#include "test_helpers.hxx"
using namespace pqxx;
// Test nontransaction.
namespace
{
void test_014()
{
connection conn;
// Begin a "non-transaction" acting on our current connection. This is
// really all the transactional integrity we need since we're only
// performing one query which does not modify the database.
nontransaction tx{conn, "test14"};
// The transaction class family also has process_notice() functions.
// These simply pass the notice through to their connection, but this may
// be more convenient in some cases. All process_notice() functions accept
// C++ strings as well as C strings.
tx.process_notice(std::string{"Started nontransaction\n"});
// "Commit" the non-transaction. This doesn't really do anything since
// nontransaction doesn't start a backend transaction.
tx.commit();
}
PQXX_REGISTER_TEST(test_014);
} // namespace