From: <one...@us...> - 2003-02-02 07:02:34
|
Update of /cvsroot/hibernate/Hibernate2/doc/reference/src In directory sc8-pr-cvs1:/tmp/cvs-serv31456/reference/src Modified Files: session_configuration.xml Log Message: fixed dialect class names Index: session_configuration.xml =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/doc/reference/src/session_configuration.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** session_configuration.xml 1 Feb 2003 12:22:34 -0000 1.5 --- session_configuration.xml 2 Feb 2003 07:02:31 -0000 1.6 *************** *** 407,411 **** <para> You should always set the <literal>hibernate.dialect</literal> property to the correct ! <literal>net.sf.hibernate.sql.Dialect</literal> subclass for your database. This is not strictly essential unless you wish to use <literal>native</literal> or <literal>sequence</literal> primary key generation or pessimistic locking ( --- 407,411 ---- <para> You should always set the <literal>hibernate.dialect</literal> property to the correct ! <literal>net.sf.hibernate.dialect.Dialect</literal> subclass for your database. This is not strictly essential unless you wish to use <literal>native</literal> or <literal>sequence</literal> primary key generation or pessimistic locking ( *************** *** 548,552 **** <!-- properties --> <property name="connection.datasource">my/first/datasource</property> ! <property name="dialect">net.sf.hibernate.sql.MySQLDialect</property> <property name="show_sql">false</property> <property name="use_outer_join">true</property> --- 548,552 ---- <!-- properties --> <property name="connection.datasource">my/first/datasource</property> ! <property name="dialect">net.sf.hibernate.dialect.MySQLDialect</property> <property name="show_sql">false</property> <property name="use_outer_join">true</property> |