pqxx::work
är en standardtransaktionstyp. Använd flera exec()
metod före commit()
för att köra flera frågor i en transaktion:
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();
...