pqxx::work
là một loại giao dịch mặc định. Sử dụng nhiều exec()
phương thức trước commit()
để chạy nhiều truy vấn trong một giao dịch:
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();
...