pqxx::work
एक डिफ़ॉल्ट लेनदेन प्रकार है। एकाधिक exec()
का उपयोग करें commit()
. से पहले की विधि एक लेन-देन में एकाधिक क्वेरी चलाने के लिए:
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();
...