Replace clear global response string
This commit is contained in:
parent
f6c8443c5d
commit
3a67bf47c2
@ -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;
|
||||
}
|
BIN
test/test.o
BIN
test/test.o
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user