Replace clear global response string

This commit is contained in:
marcelb 2023-07-27 22:25:39 +02:00
parent f6c8443c5d
commit 3a67bf47c2
2 changed files with 7 additions and 2 deletions

View File

@ -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.