home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / MasterDetailFrame1.java < prev    next >
Text File  |  1998-05-08  |  3KB  |  74 lines

  1. /*
  2.  * Copyright (c) 1997-1998 Borland International, Inc. All Rights Reserved.
  3.  * 
  4.  * This SOURCE CODE FILE, which has been provided by Borland as part
  5.  * of a Borland product for use ONLY by licensed users of the product,
  6.  * includes CONFIDENTIAL and PROPRIETARY information of Borland.  
  7.  *
  8.  * USE OF THIS SOFTWARE IS GOVERNED BY THE TERMS AND CONDITIONS 
  9.  * OF THE LICENSE STATEMENT AND LIMITED WARRANTY FURNISHED WITH
  10.  * THE PRODUCT.
  11.  *
  12.  * IN PARTICULAR, YOU WILL INDEMNIFY AND HOLD BORLAND, ITS RELATED
  13.  * COMPANIES AND ITS SUPPLIERS, HARMLESS FROM AND AGAINST ANY CLAIMS
  14.  * OR LIABILITIES ARISING OUT OF THE USE, REPRODUCTION, OR DISTRIBUTION
  15.  * OF YOUR PROGRAMS, INCLUDING ANY CLAIMS OR LIABILITIES ARISING OUT OF
  16.  * OR RESULTING FROM THE USE, MODIFICATION, OR DISTRIBUTION OF PROGRAMS
  17.  * OR FILES CREATED FROM, BASED ON, AND/OR DERIVED FROM THIS SOURCE
  18.  * CODE FILE.
  19.  */
  20. package borland.samples.tutorial.dataset.masterdetail;
  21.  
  22. import java.awt.*;
  23. import java.awt.event.*;
  24. import borland.jbcl.control.*;
  25. import borland.jbcl.layout.*;
  26. import borland.sql.dataset.*;
  27. import borland.jbcl.dataset.*;
  28. import java.lang.*;
  29.  
  30. public class MasterDetailFrame1 extends DecoratedFrame {
  31.   BorderLayout borderLayout1 = new BorderLayout();
  32.   BevelPanel bevelPanel1 = new BevelPanel();
  33.   Database database1 = new Database();
  34.   QueryDataSet queryDataSet1 = new QueryDataSet();
  35.   QueryDataSet queryDataSet2 = new QueryDataSet();
  36.   GridControl gridControl1 = new GridControl();
  37.   GridControl gridControl2 = new GridControl();
  38.   GridBagLayout gridBagLayout1 = new GridBagLayout();
  39.  
  40.   //Construct the frame
  41.   public MasterDetailFrame1() {
  42.     try {
  43.       jbInit();
  44.     }
  45.     catch (Exception e) {
  46.       borland.jbcl.util.Diagnostic.printStackTrace(e);
  47.     }
  48.   }
  49.  
  50.   //Component initialization
  51.   private void jbInit() throws Exception{
  52.     this.setLayout(borderLayout1);
  53.     this.setTitle("Creating a Master-Detail Relationship");
  54.     bevelPanel1.setLayout(gridBagLayout1);
  55.     database1.setConnection(new borland.sql.dataset.ConnectionDescriptor("jdbc:odbc:DataSet Tutorial", "sysdba", "masterkey", false, "sun.jdbc.odbc.JdbcOdbcDriver"));
  56.     queryDataSet1.setQuery(new borland.sql.dataset.QueryDescriptor(database1, "select * from country", null, true, Load.ALL));
  57.     queryDataSet2.setMasterLink(new borland.jbcl.dataset.MasterLinkDescriptor(queryDataSet1, new String[] {"COUNTRY"}, new String[] {"JOB_COUNTRY"}, false));
  58.     queryDataSet2.setQuery(new borland.sql.dataset.QueryDescriptor(database1, "select * from Employee", null, true, Load.ALL));
  59.     gridControl1.setDataSet(queryDataSet1);
  60.     gridControl2.setDataSet(queryDataSet2);
  61.     this.add(bevelPanel1, BorderLayout.CENTER);
  62.     bevelPanel1.add(gridControl1, new GridBagConstraints2(0, 0, 1, 1, 1.0, 1.0
  63.             ,GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(5, 15, 0, 15), -48, -184));
  64.     bevelPanel1.add(gridControl2, new GridBagConstraints2(0, 1, 1, 1, 1.0, 1.0
  65.             ,GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(25, 15, 5, 15), -982, -579));
  66.   }
  67.  
  68.   public Dimension getPreferredSize()
  69.   {
  70.     return new Dimension(400, 300);
  71.   }
  72. }
  73.  
  74.