home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / BasicResolveFrame.java < prev    next >
Text File  |  1998-05-08  |  4KB  |  104 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.basicresolve;
  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.  
  29. public class BasicResolveFrame extends DecoratedFrame {
  30.   BorderLayout borderLayout1 = new BorderLayout();
  31.   BevelPanel bevelPanel1 = new BevelPanel();
  32.   StatusBar statusBar = new StatusBar();
  33.   GridControl gridControl1 = new GridControl();
  34.   NavigatorControl navigatorControl1 = new NavigatorControl();
  35.   ButtonControl buttonControl1 = new ButtonControl();
  36.   Database database1 = new Database();
  37.   QueryDataSet queryDataSet1 = new QueryDataSet();
  38.   BorderLayout borderLayout2 = new BorderLayout();
  39.   BevelPanel bevelPanel2 = new BevelPanel();
  40.   FlowLayout flowLayout1 = new FlowLayout();
  41.  
  42.   //Construct the frame
  43.   public BasicResolveFrame() {
  44.     try {
  45.       jbInit();
  46.     }
  47.     catch (Exception e) {
  48.       borland.jbcl.util.Diagnostic.printStackTrace(e);
  49.     }
  50.   }
  51.  
  52.   //Component initialization
  53.   private void jbInit() throws Exception{
  54.     this.setLayout(borderLayout1);
  55.     this.setSize(new Dimension(551, 398));
  56.     this.setTitle("Basic Resolving");
  57.     bevelPanel1.setLayout(borderLayout2);
  58.     statusBar.setDataSet(queryDataSet1);
  59.     gridControl1.setDataSet(queryDataSet1);
  60.     navigatorControl1.setDataSet(queryDataSet1);
  61.     buttonControl1.setLabel("Save Changes");
  62.     buttonControl1.addActionListener(new BasicResolveFrame_buttonControl1_actionAdapter(this));
  63.     database1.setConnection(new borland.sql.dataset.ConnectionDescriptor("jdbc:odbc:DataSet Tutorial", "SYSDBA", "masterkey", false, "sun.jdbc.odbc.JdbcOdbcDriver"));
  64.     queryDataSet1.setQuery(new borland.sql.dataset.QueryDescriptor(database1, "select * from employee", null, true, Load.ALL));
  65.     bevelPanel2.setLayout(flowLayout1);
  66.     this.add(statusBar, BorderLayout.SOUTH);
  67.     this.add(bevelPanel1, BorderLayout.CENTER);
  68.     bevelPanel1.add(gridControl1, BorderLayout.CENTER);
  69.     bevelPanel1.add(navigatorControl1, BorderLayout.NORTH);
  70.     bevelPanel1.add(bevelPanel2, BorderLayout.SOUTH);
  71.     bevelPanel2.add(buttonControl1, null);
  72.   }
  73.  
  74.   // Override getPreferredSize() to set initial window size
  75.   public Dimension getPreferredSize()
  76.   {
  77.     return new Dimension(551, 398);
  78.   }
  79.  
  80.   void buttonControl1_actionPerformed(ActionEvent e) {
  81.   try {
  82.            database1.saveChanges(queryDataSet1); //, UpdateMode.CHANGED_COLUMNS);
  83.            System.out.println("Save changes succeeded");
  84.        }
  85.        catch (Exception ex) {
  86.      // displays the exception on the StatusBar if the application includes one,
  87.      // or displays an error dialog if there isn't 
  88.          DataSetException.handleException(ex);  }
  89.   }
  90. }
  91.  
  92. class BasicResolveFrame_buttonControl1_actionAdapter implements java.awt.event.ActionListener {
  93.   BasicResolveFrame adaptee;
  94.  
  95.   BasicResolveFrame_buttonControl1_actionAdapter(BasicResolveFrame adaptee) {
  96.     this.adaptee = adaptee;
  97.   }
  98.  
  99.   public void actionPerformed(ActionEvent e) {
  100.     adaptee.buttonControl1_actionPerformed(e);
  101.   }
  102. }
  103.  
  104.