Added into() free function

This commit is contained in:
rbock
2014-11-09 13:00:17 +01:00
parent ba1f200ef1
commit 548a601026
2 changed files with 7 additions and 1 deletions

View File

@@ -37,7 +37,7 @@ int main()
test::TabFoo f;
test::TabBar t;
auto c = custom_query(select(all_of(t)).from(t), sqlpp::verbatim("INTO"), f);
auto c = custom_query(select(all_of(t)).from(t), into(f));
std::cerr << serialize(c, printer).str() << std::endl;
db(c);