1 2 3 4 5 6 7 8
#include <pqxx/pqxx> int main() { pqxx::connection cx{"postgresql://vcpkg@localhost/tests"}; pqxx::work tx{cx}; return 0; }