Joined: Wed Oct 05, 2005 10:38 pm Posts: 1
|
Hibernate version:2.XX
Hibernate converts the table or column name in
backticks in the mapping documentHibernate to correct quotation style for the SQL Dialect (usually
double quotes, but brackets for SQL Server and backticks for MySQL).
But in some case conversion does not work properly.
`aaa` --> sometable_."aaa" (OK)
TABLEORALIAS.`aaa` --> TABLEORALIAS.`aaa` (NOT CONVERTED)
`Table.aaa` --> sometable_."Table.aaa" (Incorrect)
`Table`.`aaa` --> "Table`.`aaa" (Incorrect)
I suffer from this problem when using sql expression in formula property...
Thank you
|
|