Using Hibernate 3.1
I'm migrating our code to the latest Hibernate 3.1. I believe our old code was using Hibernate 3.0 code (not 2.* definitely).
I'm getting this error when compiling:
Code:
cannot find symbol
[javac] symbol : method getSchemaSeparator()
[javac] location: class org.hibernate.dialect.Dialect
It occurs in a file derived from
PersistentIdentifierGenerator at this line:
Code:
procName = Table.qualify(catalogName, schemaName, procName, dialect.getSchemaSeparator() );
Apparently the Hibernate version we were using before had a Dialect class that had the function getSchemaSeperator() but the newest 3.1 version doesn't seem to support it. Is there an equivalent method hiding somewhere or some other way to accomplish this?
Thanks.