WEB开发网
开发学院数据库Access Access2000速成教程--2.2 定义与使用交叉表查询... 阅读

Access2000速成教程--2.2 定义与使用交叉表查询

 2005-11-04 13:35:46 来源:WEB开发网   
核心提示: OJB的文章实在是少的可怜,自己总结了一下一些重点的内容,Access2000速成教程--2.2 定义与使用交叉表查询(4),想到哪里写到哪里吧比如有课程(event)和类别(catalog)两张表,二者是多对多的关系,关系表叫做catalogEventBridge,字段为[catalogID,eventID]
   OJB的文章实在是少的可怜,自己总结了一下一些重点的内容。想到哪里写到哪里吧

比如有课程(event)和类别(catalog)两张表,二者是多对多的关系,关系表叫做catalogEventBridge,字段为[catalogID,eventID],现在要做的是一旦查询出一个catalog,就要把相关的event也全部搜索出来。

1.repository_user.xml(标准化越来越近了)中作如下定义:



  1. <class-descriptor class="org.pie.vls.Catalog.Catalog" table="catalog"> 
  2. <field-descriptor name="catalogID" column="catalogID" jdbc-type="INTEGER" 
  3. Prima(最完善的虚拟主机管理系统)rykey="true" /> <field-descriptor name="catalogName" column="catalogName" 
  4. jdbc-type="VARCHAR" /> <collection-descriptor name="catalogEventList" element-
  5. class-ref="org.pie.vls.Catalog.CatalogEventBridge" auto-retrieve="true" auto-
  6. update="true" auto-delete="true"> <inverse-foreignkey field-ref="catalogID"/> 
  7. </collection-descriptor> </class-descriptor> <class-descriptor 
  8. class="org.pie.vls.Catalog.CatalogEventBridge" table="catalogEventBridge"> 
  9. <field-descriptor name="catalogID" column="catalogID" jdbc-type="INTEGER" 
  10. Prima(最完善的虚拟主机管理系统)rykey="true" /> <field-descriptor name="eventTypeID" column="eventTypeID" 
  11. jdbc-type="INTEGER" Prima(最完善的虚拟主机管理系统)rykey="true" /> </class-descriptor> <class-descriptor 
  12. class="org.pie.vls.EventType.EventType" table="eventType" > <field-descriptor 
  13. name="eventTypeID" column="eventTypeID" jdbc-type="INTEGER" Prima(最完善的虚拟主机管理系统)rykey="true" 
  14. autoincrement="true" />
  15.    <field-descriptor
  16.      name="eventTypeTitle"
  17.      column="eventTypeTitle"
  18.      jdbc-type="VARCHAR"
  19.    />
  20. ... ...
  21. </class-descriptor>


2. bean文件的定义



EventType.java


  1. public class EventType implements Cloneable, Comparable {
  2.   private String eventTypeTitle;
  3.   private String eventTypeCode;
  4.   private String eventTypeDesc;
  5.   private int eventTypeID;
  6.   public int getEventTypeID() {
  7.     return this.eventTypeID;
  8.   }
  9.   public void setEventTypeID(int value) {
  10.     this.eventTypeID = value;
  11.   }
  12.   ... ...
  13. }


catalog.java


  1. public class Catalog implements Comparable {
  2.   private int catalogID;
  3.   private String catalogName = "";
  4.   private List catalogEventList = new Vector();
  5.   /**
  6.    * @return Returns the catalogID.
  7.    */
  8.   public int getCatalogID() {
  9.     return catalogID;
  10.   }
  11.   /**
  12.    * @param catalogID The catalogID to set.
  13.    */
  14.   public void setCatalogID(int catalogID) {
  15.     this.catalogID = catalogID;
  16.   }
  17.   /**
  18.    * @return Returns the catalogName.
  19.    */
  20.   public String getCatalogName() {
  21.     return catalogName;
  22.   }
  23.   /**
  24.    * @param catalogName The catalogName to set.
  25.    */
  26.   public void setCatalogName(String catalogName) {
  27.     this.catalogName = catalogName;
  28.   }
  29.   /**
  30.    * @return Returns the catalogEventList.
  31.    */
  32.   public List getCatalogEventList() {
  33.     return catalogEventList;
  34.   }
  35.   /**
  36.    * @param catalogEventList The catalogEventList to set.
  37.    */
  38.   public void setCatalogEventList(List catalogEventList) {
  39.     this.catalogEventList = catalogEventList;
  40.   }
  41. }


 

上一页  1 2 3 4 5 6  下一页

Tags:Access 速成 教程

编辑录入:coldstar [复制链接] [打 印]
赞助商链接