p
je výchozí typ transakce. Použijte více exec()
metoda před commit()
spustit více dotazů v jedné transakci:
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();
...