Hi,
I'm having problems with postgresql 8.4 and hibernate. I have this table tbl_user but i have a problems.
The database's name is moonstone and i created a schema under it named cctilos.
the query that hibernate produces looks like this
update cctilos.tbl_user set is_login = 0
it always says that is_login column does not exist.
When i try to run it using pgadmin it also says the same thing so what i do is
i use
update cctilos.tbl_user set "is_login" = 0
and it works how do i tell hibernate to include double quotations for columns or is there a better way for doing this,
thanks carlo
|