You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for(auto &&row : db << "select age,name,weight from user where age > ? ;" << 18) {
int age; string name; double weight;
row >> age >> name >> weight;
cout << age << ' ' << name << ' ' << weight << endl;
}
// or with a tuple
for(tuple<int, string, double> row : db << "select age,name,weight from user where age > ? ;" << 18) {
cout << get<0>(row) << ' ' << get<1>(row) << ' ' << get<2>(row) << endl;
}
I recived the problem
Invalid range expression of type 'database_binder'; no viable 'begin' function available
at : operator in both foreach loops
The text was updated successfully, but these errors were encountered:
apparently the default branch is "/dev" (so the readme is from that branch) and the latest release is not up to date.
Therefore, for anyone who is downloading releases with package managers or manually, the range-based stuff is not going to work.
Instead:
clone the dev branch with git and then include the header manually.
the code from README
I recived the problem
at
:
operator in both foreach loopsThe text was updated successfully, but these errors were encountered: