Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate
In directory sc8-pr-cvs1:/tmp/cvs-serv21385/sf/hibernate
Modified Files:
Query.java hibernate-configuration-2.0.dtd
Log Message:
fixed some silly errors in new config stuff
added a warning to the javadoc
added --config option to SchemaExport
Index: Query.java
===================================================================
RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/Query.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Query.java 17 Jan 2003 10:27:41 -0000 1.6
--- Query.java 31 Jan 2003 08:49:49 -0000 1.7
***************
*** 41,48 ****
* to JDBC).<br>
* <br>
! * Queries are executed by calling <tt>list()</tt> or <tt>find()</tt>. A
! * query may be re-executed by subsequent invocations. Its lifespan is,
! * however, bounded by the lifespan of the <tt>Session</tt> that created
! * it.<br>
* <br>
* Implementors are not intended to be threadsafe.
--- 41,51 ----
* to JDBC).<br>
* <br>
! * You may not mix and match JDBC-style parameters and named parameters
! * in the same query.<br>
! * <br>
! * Queries are executed by calling <tt>list()</tt>, <tt>scroll()</tt> or
! * <tt>iterate()</tt>. A query may be re-executed by subsequent invocations.
! * Its lifespan is, however, bounded by the lifespan of the <tt>Session</tt>
! * that created it.<br>
* <br>
* Implementors are not intended to be threadsafe.
Index: hibernate-configuration-2.0.dtd
===================================================================
RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/hibernate-configuration-2.0.dtd,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** hibernate-configuration-2.0.dtd 28 Jan 2003 10:24:22 -0000 1.1
--- hibernate-configuration-2.0.dtd 31 Jan 2003 08:49:49 -0000 1.2
***************
*** 11,15 ****
-->
! <ELEMENT hibernate-configuration (session-factory)>
<!ELEMENT property (#PCDATA)>
--- 11,15 ----
-->
! <!ELEMENT hibernate-configuration (session-factory)>
<!ELEMENT property (#PCDATA)>
|