Replace clear global response string

fix-callback^2
marcelb 1 year ago
parent f6c8443c5d
commit 3a67bf47c2
  1. 7
      test/test.cpp
  2. BIN
      test/test.o

@ -13,7 +13,12 @@ int main() {
auto res = mydb.query("Select * from Tab1");
cout << endl << res["NAME"][0];
for (auto i : res)
for (auto j: i.second)
cout << i.first << " : " << j << endl;
// cout << endl << res["NAME"][1];
return 0;
}

Binary file not shown.
Loading…
Cancel
Save