If I have a FooBar entity with a fizzBuzz field, what will the resulting table and column names be in HSQL? Would they be FOO_BAR and FIZZ_BUZZ? Or FooBar and fizzBuzz? Or . . .
If I have a FooBar entity with a fizzBuzz field, what will the resulting
Share
Using the following domain class:
Creates the following structure (as viewed in the DatabaseManager):
So your first example is correct, the table created is
FOO_BARand the field isFIZZ_BUZZ.