pqxx::work
is een standaard transactietype.Gebruik meerdere exec()
methode voor commit()
om meerdere zoekopdrachten in één transactie uit te voeren:
using namespace pqxx;
...
connection c("dbname=test user=postgres hostaddr=127.0.0.1");
work w(c);
w.exec("create table test_xx (id int primary key)");
w.exec("insert into test_xx values (1)");
w.commit();
...