Hi,
I have a Currency table, which stores comma separated ascii codes for the currency label (For example for dollar, 36 is stored which represents $). Since we don't manage the table the data in it can't be changed.
For our purposes, we want to transform the ascii code to the proper representation while loading data from database.
Does hibernate provide any mechanism to do such transformations using java functions? We would write a result transformer while loading, but that it handled internally by a product we are using.
Any thoughts are most welcome!
|