Hi All,
I’m trying to access an IBM UniVerse database using hibernate. But universe is case sensitive and the sql that hibernate generates is in lower case, but what is required is that the casing must be preserved for table names and column names.
Example:
UniVerse will not accept (which what hibernate generates):
select tbl_clients0.id, tbl_clients0.name
from tbl_clients tbl_clients0;
But will accept:
SELECT TBL_CLIENTS0.ID, TB_CLIENTS0.Name
FROM TBL_CLIENTS TBL_CLIENTS0
Note that the column [name] only the first letter is capitalised.
Is there any way I could control this in hibernate.
_________________ ---------
Regards
Gigabyte
|