ManagementWindow.java~2~
上传用户:liming9091
上传日期:2014-10-27
资源大小:3376k
文件大小:3k
源码类别:

Java编程

开发平台:

Java

  1. package uml_gaokai;
  2. import java.awt.*;
  3. import javax.swing.*;
  4. import com.borland.dx.sql.dataset.*;
  5. import com.borland.dbswing.*;
  6. import com.borland.jbcl.layout.*;
  7. import java.awt.event.*;
  8. /**
  9.  * <p>Title: </p>
  10.  * <p>Description: </p>
  11.  * <p>Copyright: Copyright (c) 2003</p>
  12.  * <p>Company: </p>
  13.  * @author unascribed
  14.  * @version 1.0
  15.  */
  16. public class ManagementWindow extends JDialog {
  17.   private Database database1 = new Database();
  18.   private QueryDataSet queryDataSet1 = new QueryDataSet();
  19.   private JPanel jPanel1 = new JPanel();
  20.   private JdbTable jdbTable1 = new JdbTable();
  21.   private XYLayout xYLayout1 = new XYLayout();
  22.   private JButton jButton1 = new JButton();
  23.   private JButton jButton2 = new JButton();
  24.   private JButton jButton3 = new JButton();
  25.   private QueryDataSet queryDataSet2 = new QueryDataSet();
  26.   private TableScrollPane tableScrollPane1 = new TableScrollPane();
  27.   public ManagementWindow(Frame frame, String title, boolean modal) {
  28.     super(frame, title, modal);
  29.     try {
  30.       jbInit();
  31.       pack();
  32.     }
  33.     catch(Exception ex) {
  34.       ex.printStackTrace();
  35.     }
  36.   }
  37.   public ManagementWindow() {
  38.     this(null, "", false);
  39.   }
  40.   private void jbInit() throws Exception {
  41.     jPanel1.setLayout(xYLayout1);
  42.     jButton1.setText("查看进货信息");
  43.     jButton1.addActionListener(new java.awt.event.ActionListener() {
  44.       public void actionPerformed(ActionEvent e) {
  45.         jButton1_actionPerformed(e);
  46.       }
  47.     });
  48.     jButton2.setText("查看销售信息");
  49.     jButton2.addActionListener(new java.awt.event.ActionListener() {
  50.       public void actionPerformed(ActionEvent e) {
  51.         jButton2_actionPerformed(e);
  52.       }
  53.     });
  54.     jButton3.setText("退出");
  55.     database1.setConnection(new com.borland.dx.sql.dataset.ConnectionDescriptor("jdbc:odbc:gaokaiSQL", "sa", "", false, "sun.jdbc.odbc.JdbcOdbcDriver"));
  56.     database1.setDatabaseName("");
  57.     this.getContentPane().add(jPanel1, BorderLayout.CENTER);
  58.     jPanel1.add(jdbTable1,        new XYConstraints(2, 2, 332, 187));
  59.     jPanel1.add(jButton1,     new XYConstraints(5, 208, 109, 20));
  60.     jPanel1.add(jButton3,     new XYConstraints(255, 208, 73, 20));
  61.     jPanel1.add(jButton2,  new XYConstraints(123, 208, 106, 20));
  62.     jPanel1.add(tableScrollPane1,  new XYConstraints(192, 61, -1, -1));
  63.   }
  64.   void jButton1_actionPerformed(ActionEvent e) {
  65.     intilize();
  66.     queryDataSet1.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(database1, "SELECT Buyer_TABLE.BuyerID,Buyer_TABLE.BuyerGoodsName,Buyer_TABLE.BuyerGoodsNumber,Buyer_TABLE.BuyerM" +
  67.         "anufacturer,Buyer_TABLE.BuyerDate,Buyer_TABLE.BuyerStatus,Buyer_TABLE.BuyerName " +
  68.         "FROM UML_CS.dbo.Buyer_TABLE", null, true, Load.ALL));
  69.     jdbTable1.setDataSet(queryDataSet1);
  70.     queryDataSet1.refresh();
  71.   }
  72.   void jButton2_actionPerformed(ActionEvent e) {
  73.     intilize();
  74.     queryDataSet2.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(database1, "SELECT vendition_TABLE.VenditionID,vendition_TABLE.GoodsName,vendition_TABLE.GoodsCustomNumber,vendit" +
  75.         "ion_TABLE.CustomerName,vendition_TABLE.VenditionDate,vendition_TABLE.GoodsSize,vendition_TABLE.GoodsP" +
  76.         "rice FROM UML_CS.dbo.vendition_TABLE", null, true, Load.ALL));
  77.     jdbTable1.setDataSet(queryDataSet2);
  78.     queryDataSet2.refresh();
  79.   }
  80.   public void intilize(){
  81.     queryDataSet1.close();
  82.     queryDataSet2.close();
  83.   }
  84. }