mirror of
https://github.com/rbock/sqlpp11.git
synced 2025-12-31 10:10:28 -06:00
Add the possibility to keep the table and column names as in the DDL
This commit is contained in:
@@ -1,5 +1,15 @@
|
||||
#include <Sample.h>
|
||||
#include <sample.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
test::TabFoo tab_foo;
|
||||
tab_foo.delta = "delta";
|
||||
tab_foo.Epsilon = 42;
|
||||
tab_foo.omega = 3.14;
|
||||
|
||||
test::TabBar tab_bar;
|
||||
tab_bar.alpha = 42;
|
||||
tab_bar.beta = "beta";
|
||||
tab_bar.gamma = true;
|
||||
tab_bar.delta = 42;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user