How to read Hibernate mapping
- by Lluis Martinez
Hi,
I need to know which physical column is associated to a persistent's attribute.
e.g.
Class LDocLine has this attribute
private Integer lineNumber;
which is mapped in hibernate like this :
The method I need is something like :
getColumn("LDocLine","lineNumber) = "LINENUMBER"
I assume its existence internally, but not sure if it's in the public api.
Thanks in advance