Add the possibility to keep the table and column names as in the DDL

This commit is contained in:
Sylvain Joubert
2018-02-08 12:02:17 +01:00
parent f6503992f7
commit d2d9a1693c
4 changed files with 64 additions and 19 deletions

View File

@@ -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;
}