⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 srchleechdominfo.java~13~

📁 医疗管理系统
💻 JAVA~13~
字号:
package cliniquemanager;

import java.awt.BorderLayout;

import javax.swing.JPanel;
import com.borland.dx.sql.dataset.Database;
import com.borland.dx.sql.dataset.QueryDataSet;
import com.borland.dx.sql.dataset.ConnectionDescriptor;
import javax.swing.JScrollPane;
import com.borland.dbswing.JdbTable;
import com.borland.dx.sql.dataset.Load;
import com.borland.dx.sql.dataset.QueryDescriptor;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JTextField;
import java.awt.GridLayout;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import com.borland.dx.dataset.Column;
import java.awt.Dimension;
import java.awt.Font;
import javax.swing.JOptionPane;
import javax.swing.JComboBox;
import javax.swing.JFormattedTextField;
import java.awt.TextArea;

/**
 * <p>Title: CliniqueManager</p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2007</p>
 *
 * <p>Company: shine</p>
 *
 * @author robin
 * @version 1.0
 */
public class SrchLeechdomInfo extends JPanel {
    BorderLayout borderLayout1 = new BorderLayout();
    Database database1 = new Database();
    JPanel pnlButton = new JPanel();
    JPanel pnlInfo = new JPanel();
    JPanel pnlSouth = new JPanel();
    JPanel pnlTop = new JPanel();
    JScrollPane jScrollPane1 = new JScrollPane();
    JdbTable dbtblDoctor = new JdbTable();
    JButton btnExit = new JButton();
    JButton btnAll = new JButton();
    JButton btnSearch2 = new JButton();
    JButton btnSearch1 = new JButton();
    JLabel lblName = new JLabel();
    JTextField txtName = new JTextField();
    QueryDataSet rsSearchLeechdom = new QueryDataSet();
    JLabel lblTip = new JLabel();
    GridLayout gridLayout3 = new GridLayout();
    JLabel jLabel3 = new JLabel();
    JLabel jLabel4 = new JLabel();
    GridLayout gridLayout1 = new GridLayout();
    JLabel jLabel5 = new JLabel();
    JLabel jLabel6 = new JLabel();
    JLabel jLabel7 = new JLabel();
    JLabel lblTop = new JLabel();
    String sql;
    String tsql="select name as '药品名称',factory as '出产厂家',price as '价格' from leechdom ";
    JLabel jLabel1 = new JLabel();
    GridLayout gridLayout2 = new GridLayout();
    JLabel lblFactory = new JLabel();
    JTextField txtFactory = new JTextField();
    Column column1 = new Column();
    Column column2 = new Column();
    Column column3 = new Column();
    public SrchLeechdomInfo() {
        try {
            jbInit();
        } catch (Exception exception) {
            exception.printStackTrace();
        }
    }

    private void jbInit() throws Exception {
        Dimension dimen = new Dimension(90,30);
        this.setLayout(borderLayout1);
        database1.setConnection(new ConnectionDescriptor(
                "jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=Clinique",
                "sa", "", false, "com.microsoft.jdbc.sqlserver.SQLServerDriver"));
        btnExit.setText("退      出");
        btnExit.addActionListener(new SrchLeechdomInfo_btnExit_actionAdapter(this));
        btnAll.setText("全部显示");
        btnAll.addActionListener(new SrchLeechdomInfo_btnAll_actionAdapter(this));
        btnSearch2.setText("模糊查找");
        btnSearch2.addActionListener(new
                                     SrchLeechdomInfo_btnSearch2_actionAdapter(this));
        btnSearch1.setText("精确查找");
        btnSearch1.addActionListener(new
                                     SrchLeechdomInfo_btnSearch1_actionAdapter(this));
        lblName.setToolTipText("");
        lblName.setText("药品名称:");
        pnlSouth.setLayout(gridLayout1);
        pnlInfo.setLayout(gridLayout2);
        search(tsql);
        lblTip.setToolTipText("");
        lblTip.setText("提示:若知道药品名称或出产厂家,则输入后点按钮“精确查询”,若只知道其中的部分,则输入后点按钮“模糊查询”");
        pnlButton.setLayout(gridLayout3);
        gridLayout3.setColumns(6);
        gridLayout1.setColumns(1);

        gridLayout1.setRows(8);
        lblTop.setFont(new java.awt.Font("宋体", Font.PLAIN, 20));
        lblTop.setText("药品信息查询");

        lblFactory.setText("出产厂家:");
        rsSearchLeechdom.setReadOnly(true);
        pnlButton.add(jLabel3);
        pnlButton.add(btnSearch1);
        pnlButton.add(btnSearch2);
        pnlButton.add(btnAll);
        pnlButton.add(btnExit);
        pnlButton.add(jLabel4);
        pnlSouth.add(jLabel6);
        this.add(jScrollPane1, java.awt.BorderLayout.CENTER);
        jScrollPane1.getViewport().add(dbtblDoctor);
        pnlInfo.add(lblName);
        pnlInfo.add(txtName);
        pnlInfo.add(jLabel1);
        pnlInfo.add(lblFactory);
        pnlInfo.add(txtFactory);
        pnlSouth.add(pnlInfo, null);
        pnlSouth.add(jLabel5);
        pnlSouth.add(pnlButton, null);
        pnlSouth.add(jLabel7);
        pnlSouth.add(lblTip, null);
        pnlTop.add(lblTop);
        this.add(pnlSouth, java.awt.BorderLayout.SOUTH);
        this.add(pnlTop, java.awt.BorderLayout.NORTH);
    }

    public void search(String sql){
        rsSearchLeechdom.closeStatement();
        rsSearchLeechdom.setQuery(new QueryDescriptor(database1,
                sql, null, true,
                Load.ALL));
        dbtblDoctor.setDataSet(rsSearchLeechdom);
        rsSearchLeechdom.refresh();
    }

    public void btnSearch1_actionPerformed(ActionEvent e) {
        if (txtName.getText().equals("") && txtFactory.getText().equals("")) {
            JOptionPane.showMessageDialog(null, "请输入查询信息");
            return;
        }
        if(txtName.getText().equals(""))
            sql = tsql + "where factory='" + txtFactory.getText() + "'";
        else if(txtFactory.getText().equals(""))
            sql = tsql + "where name='" + txtName.getText() + "'";
        else
            sql = tsql + "where name='" + txtName.getText() + "' and factory='" + txtFactory.getText() + "'";
        search(sql);
        txtName.setText("");
        txtFactory.setText("");
    }

    public void btnSearch2_actionPerformed(ActionEvent e) {
        if (txtName.getText().equals("") && txtFactory.getText().equals("")) {
            JOptionPane.showMessageDialog(null, "请输入查询信息");
            return;
        }
        if(txtName.getText().equals(""))
            sql = tsql + "where factory like '%" + txtFactory.getText() + "%'";
        else if(txtFactory.getText().equals(""))
            sql = tsql + "where name like '%" + txtName.getText() + "%'";
        else
            sql = tsql + "where name like '%" + txtName.getText() + "%' and factory like '%" + txtFactory.getText() + "%'";
        search(sql);
        txtName.setText("");
        txtFactory.setText("");
    }

    public void btnAll_actionPerformed(ActionEvent e) {
        search(tsql);
    }

    public void btnExit_actionPerformed(ActionEvent e) {
        this.setVisible(false);
    }

}


class SrchLeechdomInfo_btnExit_actionAdapter implements ActionListener {
    private SrchLeechdomInfo adaptee;
    SrchLeechdomInfo_btnExit_actionAdapter(SrchLeechdomInfo adaptee) {
        this.adaptee = adaptee;
    }

    public void actionPerformed(ActionEvent e) {
        adaptee.btnExit_actionPerformed(e);
    }
}


class SrchLeechdomInfo_btnAll_actionAdapter implements ActionListener {
    private SrchLeechdomInfo adaptee;
    SrchLeechdomInfo_btnAll_actionAdapter(SrchLeechdomInfo adaptee) {
        this.adaptee = adaptee;
    }

    public void actionPerformed(ActionEvent e) {
        adaptee.btnAll_actionPerformed(e);
    }
}


class SrchLeechdomInfo_btnSearch2_actionAdapter implements ActionListener {
    private SrchLeechdomInfo adaptee;
    SrchLeechdomInfo_btnSearch2_actionAdapter(SrchLeechdomInfo adaptee) {
        this.adaptee = adaptee;
    }

    public void actionPerformed(ActionEvent e) {
        adaptee.btnSearch2_actionPerformed(e);
    }
}


class SrchLeechdomInfo_btnSearch1_actionAdapter implements ActionListener {
    private SrchLeechdomInfo adaptee;
    SrchLeechdomInfo_btnSearch1_actionAdapter(SrchLeechdomInfo adaptee) {
        this.adaptee = adaptee;
    }

    public void actionPerformed(ActionEvent e) {
        adaptee.btnSearch1_actionPerformed(e);
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -