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

Java编程

开发平台:

Java

  1. package infomanagement;
  2. import java.awt.*;
  3. import javax.swing.*;
  4. import com.borland.jbcl.layout.*;
  5. import com.borland.dbswing.*;
  6. import com.borland.dx.sql.dataset.*;
  7. import com.borland.dx.dataset.*;
  8. import java.awt.event.*;
  9. /**
  10.  * <p>Title: </p>
  11.  * <p>Description: </p>
  12.  * <p>Copyright: Copyright (c) 2003</p>
  13.  * <p>Company: </p>
  14.  * @author unascribed
  15.  * @version 1.0
  16.  */
  17. public class ArtsQuery extends JDialog {
  18.   private JPanel jPanel1 = new JPanel();
  19.   private XYLayout xYLayout1 = new XYLayout();
  20.   private JLabel jLabel1 = new JLabel();
  21.   private JLabel jLabel2 = new JLabel();
  22.   private JLabel jLabel3 = new JLabel();
  23.   private JTextField jTextField1 = new JTextField();
  24.   private JButton jButton1 = new JButton();
  25.   private JLabel jLabel4 = new JLabel();
  26.   private JdbTable jdbTable1 = new JdbTable();
  27.   private JLabel jLabel5 = new JLabel();
  28.   private JButton jButton2 = new JButton();
  29.   private JdbTextField jdbTextField1 = new JdbTextField();
  30.   private QueryDataSet queryDataSet1 = new QueryDataSet();
  31.   private Database database1 = new Database();
  32.   private QueryDataSet queryDataSet2 = new QueryDataSet();
  33.   public ArtsQuery(Frame frame, String title, boolean modal) {
  34.     super(frame, title, modal);
  35.     try {
  36.       jbInit();
  37.       pack();
  38.     }
  39.     catch(Exception ex) {
  40.       ex.printStackTrace();
  41.     }
  42.   }
  43.   public ArtsQuery() {
  44.     this(null, "", false);
  45.   }
  46.   private void jbInit() throws Exception {
  47.     jPanel1.setLayout(xYLayout1);
  48.     jLabel1.setFont(new java.awt.Font("Dialog", 0, 23));
  49.     jLabel1.setForeground(Color.magenta);
  50.     jLabel1.setBorder(BorderFactory.createEtchedBorder());
  51.     jLabel1.setText("                     文科科成绩查询");
  52.     jLabel2.setBorder(BorderFactory.createEtchedBorder());
  53.     jLabel3.setText("准考证号");
  54.     jButton1.setText("执行查询");
  55.     jButton1.addActionListener(new java.awt.event.ActionListener() {
  56.       public void actionPerformed(ActionEvent e) {
  57.         jButton1_actionPerformed(e);
  58.       }
  59.     });
  60.     jLabel4.setBorder(BorderFactory.createEtchedBorder());
  61.     jdbTable1.setBorder(BorderFactory.createEtchedBorder());
  62.     jLabel5.setText("总成绩");
  63.     jButton2.setText("退出");
  64.     jButton2.addActionListener(new java.awt.event.ActionListener() {
  65.       public void actionPerformed(ActionEvent e) {
  66.         jButton2_actionPerformed(e);
  67.       }
  68.     });
  69.     database1.setConnection(new com.borland.dx.sql.dataset.ConnectionDescriptor("jdbc:odbc:local", "sa", "", false, "sun.jdbc.odbc.JdbcOdbcDriver"));
  70.     this.getContentPane().add(jPanel1, BorderLayout.CENTER);
  71.     jPanel1.add(jLabel1, new XYConstraints(0, 1, 399, 53));
  72.     jPanel1.add(jLabel3,  new XYConstraints(10, 68, 90, 20));
  73.     jPanel1.add(jTextField1,     new XYConstraints(110, 68, 90, 20));
  74.     jPanel1.add(jLabel2,   new XYConstraints(0, 53, 398, 49));
  75.     jPanel1.add(jButton1,      new XYConstraints(290, 68, 90, 20));
  76.     jPanel1.add(jdbTable1,  new XYConstraints(1, 104, 394, 153));
  77.     jPanel1.add(jLabel5,   new XYConstraints(20, 270, 90, 20));
  78.     jPanel1.add(jButton2,   new XYConstraints(290, 270, 90, 20));
  79.     jPanel1.add(jdbTextField1,     new XYConstraints(110, 270, 90, 20));
  80.     jPanel1.add(jLabel4, new XYConstraints(-2, 105, 397, 202));
  81.   }
  82.   void cancel(){
  83.     dispose() ;
  84.   }
  85.   void jButton2_actionPerformed(ActionEvent e) {
  86.     cancel() ;
  87.   }
  88.   void jButton1_actionPerformed(ActionEvent e) {
  89.       //进行数据查询
  90.      try{
  91.      //获得准考证号
  92.      int cardID1 = Integer.parseInt(jTextField1.getText().trim());
  93.      //查询学习成绩
  94.      queryDataSet1.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(database1, "SELECT science2.cardID,science2.subject,science2.achievement,science2.subjectNameID " +
  95.        "FROM info.dbo.science2 where science2.cardID = '"+cardID1+"'", null, true, Load.ALL));
  96.      //加入到jdbTable1中
  97.      jdbTable1.setDataSet(queryDataSet1);
  98.      //执行sum语句,获得成绩总分
  99.      queryDataSet2.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(database1, "SELECT SUM(achievement) AS SUM_achievement FROM info.dbo.science2n" +
  100.        "where science2.cardID = 10000001", null, true, Load.ALL));
  101.      //在jdbTextField1中加入一列
  102.      jdbTextField1.setColumnName("SUM_achievement");
  103.      //把数据集加入到jdbTextField1中
  104.     jdbTextField1.setDataSet(queryDataSet2);
  105.     }
  106.     catch(Exception www){}
  107.   }
  108. }