Grant Limberg be7ce4110e
Revert "Delete and re-add libpqxx-7.7.3 due to weird corruption."
This reverts commit e96515433d71684a5a9a876c7af93530e11e160b.
2022-06-24 10:12:36 -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