We tried to test hibernate-core version 6.2.0.CR2 with the following dialect, but unfortunately we get the same error:
public class SybaseWorkaroundDialect extends SybaseASEDialect {
@Override
public CallableStatementSupport getCallableStatementSupport() {
return JTDSCallableStatementSupport.INSTANCE;
}
}
However, we were able to get the driver to work with the following dialect
public class SybaseWorkaroundDialect extends SybaseASEDialect {
@Override
public boolean supportsNamedParameters(DatabaseMetaData databaseMetaData) {
return false;
}
}
|