orm - Hibernate reverse engineering: generate hbm.xml with escaped column names (backticks) -


i wondering if there way generate hibernate mapping files (hbm.xml) columns escaped (i.e. backticks).

so instead of

<property name="mycolumnid" type="java.lang.long"> 

i like

 <property name="`mycolumnid`" type="java.lang.long"> 

i did see can specify

<property name="hibernate.globally_quoted_identifiers" value="true"/> 

...(from here) i'm not sure insert that. i've tried inserting hibernate.cfg.xml did not notice difference. option hibernate use literal casing instead of escaping names in hbm.xml?

there similar question here: https://forum.hibernate.org/viewtopic.php?p=2398283

thank in advance help! :d


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -