I’m trying to setup my hibernate entity to auto create the table IFAS_util_max_object_v in that exact format. No matter what I try, I can’t seem to get it to capitalize IFAS. Does anybody have any ideas?
This is what I’ve tried.
@Table(name=”\”IFAS_util_max_object_v\””)
Also, I’m using mysql db.
What operating system are you using?
Mysql has a setting in the configuration file to determine if table names should be converted to lower case. As the tables correspond to files on the disk with the table name they are converted to lower case when using Windows as Windows file names are case insensitive. So it is impossible when using Windows.
You can read here about the details.