From: <one...@us...> - 2003-03-30 06:40:21
|
Update of /cvsroot/hibernate/Hibernate2/doc/reference/src In directory sc8-pr-cvs1:/tmp/cvs-serv18042/reference/src Modified Files: basic_or_mapping.xml query_language.xml Log Message: minor changes Index: basic_or_mapping.xml =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/doc/reference/src/basic_or_mapping.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** basic_or_mapping.xml 29 Mar 2003 13:31:22 -0000 1.11 --- basic_or_mapping.xml 30 Mar 2003 06:40:17 -0000 1.12 *************** *** 1481,1486 **** <para> ! The old <literal>object</literal> type from Hibernate 1.2 is still supported, but is ! semi-deprecated. </para> --- 1481,1486 ---- <para> ! The old <literal>object</literal> type that filled a similar role in Hibernate 1.2 is still ! supported, but is now semi-deprecated. </para> Index: query_language.xml =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/doc/reference/src/query_language.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** query_language.xml 3 Mar 2003 01:07:03 -0000 1.6 --- query_language.xml 30 Mar 2003 06:40:17 -0000 1.7 *************** *** 609,615 **** <para> ! For databases that support subselects, Hibernate supports subqueries within queries. A subquery must ! be surrounded by parentheses (often by an SQL aggregate function call). Even correlated subqueries ! (subqueries that refer to an alias in the outer query) are allowed. </para> --- 609,615 ---- <para> ! For databases that support subselects, Hibernate supports subqueries within queries. A subquery must ! be surrounded by parentheses (often by an SQL aggregate function call). Even correlated subqueries ! (subqueries that refer to an alias in the outer query) are allowed. </para> *************** *** 618,625 **** from eg.DomesticCat cat where cat.name = ! some( select list.name from eg.NameList list ) from eg.Cat cat where not exists ! ( from eg.Cat mate where mate.mate = cat )]]></programlisting> </sect1> --- 618,629 ---- from eg.DomesticCat cat where cat.name = ! some( select name.nickName from eg.Name name ) from eg.Cat cat where not exists ! ( from eg.Cat mate where mate.mate = cat ) ! ! from eg.DomesticCat cat where cat.name not in ! ( select name.nickName from eg.Name name )]]></programlisting> ! </sect1> |