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 . . .
views:
23answers:
1
+1
A:
Using the following domain class:
class MyDomain
{
String myField
}
Creates the following structure (as viewed in the DatabaseManager):

So your first example is correct, the table created is FOO_BAR and the field is FIZZ_BUZZ.
Rob Hruska
2010-09-09 15:44:21
I actually found the names all lower case on my machine, but I suspect it isn't case sensitive.
FarmBoy
2010-09-09 16:55:30