mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-01-07 05:30:44 -06:00
Continued to implement standard serializing interpreters
Everything that is interpreted also has to move out of detail namespace, because it might have to be specialized for a database connector
This commit is contained in:
@@ -36,8 +36,10 @@ int main()
|
||||
{
|
||||
TabSample t;
|
||||
|
||||
interpret(t.alpha, printer);
|
||||
interpret(t.alpha = 7, printer);
|
||||
interpret(t.alpha, printer).flush();
|
||||
interpret(t.alpha = 7, printer).flush();
|
||||
sqlpp::text_operand o = {"kaesekuchen"};
|
||||
interpret(t.beta + "kaesekuchen", printer).flush();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user