mySQL 延遲 查詢主表。本站提示廣大學習愛好者:(mySQL 延遲 查詢主表)文章只能為提供參考,不一定能成為您想要的結果。以下是mySQL 延遲 查詢主表正文
例:
<hibernate-mapping>
<class name="com.pojo.Sortp" table="sortp" catalog="shjdc">
<id name="id" type="java.lang.Integer">
<column name="Id" />
<generator class="assigned" />
</id>
<property name="name" type="java.lang.String">
<column name="Name" length="40" not-null="true" />
</property>
<set name="productses" inverse="true" cascade="all" lazy="true">
<key>
<column name="Sortid" not-null="true" />
</key>
<one-to-many class="com.pojo.Products" />
</set>
</class>
</hibernate-mapping>
普通情形下就是把lazy設為true,而不是false,由於,假設設為false的話,在履行查詢主表的同時,響應的子表也會查詢,添加了很多無用功。