On 29 Mar, 13:15, Robert Klemme <shortcut...@googlemail.com> wrote:
On 29.03.2007 13:12, DM wrote:
I use hibernate tools to create classes to store my db tables.
I have a problem with strings. I need to trim values but I want to do
it without to touch the automatically generated code...
What can I do?
This is something you should do in application land, i.e. in your Java
classes. Hibernate just transfers data from the application to the DB.
Kind regards
robert
I try to explain.
I load a table on a HashMap (the key of the table = the key of the
map) then I want to get the value from the map given the key.
The problem is the key in the db is i.e. "LOG " (the string
is filled with spaces...).
If I call map.get("LOG") I don't found nothing... I've to call
map.get("LOG "). This disturbs me...
I've inserted a .trim() on the constructor of the generated class, but
I wish to obtain the same result without touch it...
I've to wrap the generated class or can I use a different method?
instead of CHAR for those columns.