Hi all,
I read on Hibernate Documentation the way to set two or more properties on connection.url and it is:
Code:
<property name="hibernate.connection.url">jdbc:mysql://host?Property1=value1&Property2=value2&....&Propertyn =valuen</property>
However I try this:
Code:
<property name="hibernate.connection.url">jdbc:mysql://host?zeroDateTimeBehavior=convertToNull&autoReconnect=true</property>
on hibernate.cfg.xml and eclipse show me the following error:
Quote:
The reference to entity "autoReconnect" must end with the ';' delimiter.
any suggestion?
Thanks.