建立学生管理系统eclipse连接mysql数据库成功,但是查询全部信息失败。

希望大佬们帮忙看一下

已经尝试过重置密码,下面给出具体代码。

这是Dbprocess的:

import java.sql.*;
import java.util.ArrayList;
import java.util.List;

public class DbProcess{
    Connection connection = null;
    ResultSet rs = null;


    
    //mysql数据库url
    String userMySql="root"; 
    String passwordMySql="123456";
    String urlMySql = "jdbc:mysql://localhost:3306/InfoDb?user="
            +userMySql+"&password="+passwordMySql + "&useUnicode=true&characterEncoding=gbk";
    
    //sqlserver数据库url
    //String urlSqlServer = "jdbc:sqlserver://localhost:1433;integratedSecurity=true;DatabaseName=InfoDb";
    
    public DbProcess() {
        try {
            //mysql数据库设置驱动程序类型
            Class.forName("com.mysql.jdbc.Driver"); 
            System.out.println("mysql数据库驱动加载成功");
            
            //sqlserver数据库设置驱动程序类型
        //Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
        //System.out.println("sqlserver数据库驱动加载成功");

        }
        catch(java.lang.ClassNotFoundException e) {
            e.printStackTrace();
        }
    }


    public void connect(){
        try{
            //mysql数据库
            connection = DriverManager.getConnection(urlMySql);  
            
            //sqlserver数据库
            //connection = DriverManager.getConnection(urlSqlServer);
            

            if(connection!=null){
                System.out.println("数据库连接成功");
            }
        }
        catch(Exception e){
            e.printStackTrace();
        }
    }
    
    public void disconnect(){
        try{
            if(connection != null){
                connection.close();
                connection = null;
            }
        }
        catch(Exception e){
            e.printStackTrace();
        }
    }


    public ResultSet executeQuery(String sql) {
        try {
            System.out.println("executeQuery(). sql = " + sql);
            
            PreparedStatement pstm = connection.prepareStatement(sql);
            // 执行查询
            rs = pstm.executeQuery();
        } 
        catch(SQLException ex) { 
            ex.printStackTrace();
        }
        return rs;
    }
    
    //插入
    //executeUpdate 的返回值是一个整数,指示受影响的行数(即更新计数)。
    //executeUpdate用于执行 INSERT、UPDATE 或 DELETE 语句
    //以及 SQL DDL(数据定义语言)语句,例如 CREATE TABLE 和 DROP TABLE。
    
    //执行增、删、改语句的方法
    public int executeUpdate(String sql) {
        

        int count = 0;
        connect();
        try {
            Statement stmt = connection.createStatement();
            count = stmt.executeUpdate(sql);
        } 
        catch(SQLException ex) { 
            System.err.println(ex.getMessage());        
        }
        disconnect();
        return count;
    }
}

这是DatabaseCourseDesign的:

import javax.swing.*;
import javax.swing.table.DefaultTableModel;

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Vector;

public class DatabaseCourseDesign extends JFrame implements ActionListener {
    // 定义组件
    JLabel jLStudentInfoTable = null;//学生信息表
    JLabel jLSelectQueryField = null;//选择查询字段
    JLabel jLEqual = null;//=
    JLabel jLSNo = null;//学号
    JLabel jLSName = null;//姓名
    JLabel jLSSex = null;//性别
    JLabel jLSAge = null;//年龄
    JLabel jLSSpecialty = null;//专业
    JLabel jLSAddress = null;//住址

    JTextField jTFQueryField = null;//查询字段
    JTextField jTFSNo = null;//学号
    JTextField jTFSName = null;//姓名
    JTextField jTFSSex = null;//性别
    JTextField jTFSAge = null;//年龄
    JTextField jTFSSpecialty = null;//专业
    JTextField jTFSAddress = null;//住址
    
    JButton jBQuery = null;//查询
    JButton jBQueryAll = null;//查询所有记录
    JButton jBInsert = null;//插入
    JButton jBUpdate = null;//更新
    JButton jBDeleteCurrentRecord = null;//删除当前记录
    JButton jBDeleteAllRecords = null;//删除所有记录
    
    //JComboBox jCBSelectQueryField = null;
    JComboBox<String> jCBSelectQueryField = null;//查询字段
    JPanel jP1, jP2,jP3,jP4,jP5,jP6 = null;
    JPanel jPTop, jPBottom = null;
    DefaultTableModel studentTableModel = null;
    JTable studentJTable = null;
    JScrollPane studentJScrollPane = null;
    Vector studentVector = null;
    Vector titleVector = null;
    
    private static DbProcess dbProcess;
    String SelectQueryFieldStr = "学号";
    
    // 构造函数
    public DatabaseCourseDesign() {
        // 创建组件    
        jLStudentInfoTable = new JLabel("学生信息表");
        jLSelectQueryField = new JLabel("选择查询字段");
        jLEqual = new JLabel(" = ");
        jLSNo = new JLabel("学号");
        jLSName = new JLabel("姓名");
        jLSSex = new JLabel("性别");
        jLSAge = new JLabel("年龄");
        jLSSpecialty = new JLabel("专业");
        jLSAddress = new JLabel("住址");
        
        jTFQueryField = new JTextField(10);//查询字段
        jTFSNo = new JTextField(10);//学号
        jTFSName = new JTextField(10);//姓名
        jTFSSex = new JTextField(10);//性别
        jTFSAge = new JTextField(10);//年龄
        jTFSSpecialty = new JTextField(10);//专业
        jTFSAddress = new JTextField(10);//住址
        
        jBQuery = new JButton("查询");
        jBQueryAll = new JButton("查询所有记录");
        jBInsert = new JButton("插入");
        jBUpdate = new JButton("更新");
        jBDeleteCurrentRecord = new JButton("删除当前记录");
        jBDeleteAllRecords = new JButton("删除所有记录");
        // 设置监听
        jBQuery.addActionListener(this);
        jBQueryAll.addActionListener(this);
        jBInsert.addActionListener(this);
        jBUpdate.addActionListener(this);
        jBDeleteCurrentRecord.addActionListener(this);
        jBDeleteAllRecords.addActionListener(this);
        
        jCBSelectQueryField = new JComboBox<String>();//查询字段
        jCBSelectQueryField.addItem("学号");  
        jCBSelectQueryField.addItem("姓名");  
        jCBSelectQueryField.addItem("性别");
        jCBSelectQueryField.addItem("年龄");
        jCBSelectQueryField.addItem("专业");
        jCBSelectQueryField.addItem("住址");
        jCBSelectQueryField.addItemListener(new ItemListener() {//下拉框事件监听  
            public void itemStateChanged(ItemEvent event) {  
                switch (event.getStateChange()) {  
                case ItemEvent.SELECTED:  
                    SelectQueryFieldStr = (String) event.getItem();  
                    System.out.println("选中:" + SelectQueryFieldStr);  
                    break;  
                case ItemEvent.DESELECTED:  
                    System.out.println("取消选中:" + event.getItem());  
                    break;  
                }  
            }  
        });
    
        studentVector = new Vector();
        titleVector = new Vector();
        
        // 定义表头
        titleVector.add("学号");
        titleVector.add("姓名");
        titleVector.add("性别");
        titleVector.add("年龄");
        titleVector.add("专业");
        titleVector.add("住址");
        //studentTableModel = new DefaultTableModel(tableTitle, 15);
        studentJTable = new JTable(studentVector, titleVector);
        studentJTable.setPreferredScrollableViewportSize(new Dimension(450,160));
        studentJScrollPane = new JScrollPane(studentJTable);
        //分别设置水平和垂直滚动条自动出现
        studentJScrollPane.setHorizontalScrollBarPolicy(                
                JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
        studentJScrollPane.setVerticalScrollBarPolicy(                
                JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
        
        //为表格添加监听器 
        studentJTable.addMouseListener(new MouseAdapter()
        { 
            public void mouseClicked(MouseEvent e) 
            { 
                int row = ((JTable) e.getSource()).rowAtPoint(e.getPoint()); // 获得行位置
                System.out.println("mouseClicked(). row = " + row);
                Vector v = new Vector();
                v = (Vector) studentVector.get(row);

                jTFSNo.setText((String) v.get(0));// 学号
                jTFSName.setText((String) v.get(1));// 姓名
                jTFSSex.setText((String) v.get(2));// 性别
                jTFSAge.setText(Integer.toString((int) v.get(3)));// 年龄
                jTFSSpecialty.setText((String) v.get(4));// 专业
                jTFSAddress.setText((String) v.get(5));// 住址
            }
        });


        jP1 = new JPanel();
        jP2 = new JPanel();
        jP3 = new JPanel();
        jP4 = new JPanel();
        jP5 = new JPanel();
        jP6 = new JPanel();
        jPTop = new JPanel();
        jPBottom = new JPanel();
        
        jP1.add(jLStudentInfoTable,BorderLayout.SOUTH);
        jP2.add(studentJScrollPane);
        
        jP3.add(jLSelectQueryField);
        jP3.add(jCBSelectQueryField);
        jP3.add(jLEqual);
        jP3.add(jTFQueryField);
        jP3.add(jBQuery);
        jP3.add(jBQueryAll);
        jP3.setLayout(new FlowLayout(FlowLayout.LEFT));
        jP3.setPreferredSize(new Dimension(20,20));
        
        jP4.add(jLSNo);
        jP4.add(jTFSNo);
        jP4.add(jLSName);
        jP4.add(jTFSName);
        jP4.add(jLSSex);
        jP4.add(jTFSSex);
        jP4.setLayout(new FlowLayout(FlowLayout.LEFT));
        jP4.setPreferredSize(new Dimension(20,20));
    
        jP5.add(jLSAge);
        jP5.add(jTFSAge);
        jP5.add(jLSSpecialty);
        jP5.add(jTFSSpecialty);
        jP5.add(jLSAddress);
        jP5.add(jTFSAddress);
        jP5.setLayout(new FlowLayout(FlowLayout.LEFT));
        jP5.setPreferredSize(new Dimension(20,20));
        
        jP6.add(jBInsert);
        jP6.add(jBUpdate);
        jP6.add(jBDeleteCurrentRecord);
        jP6.add(jBDeleteAllRecords);
        jP6.setLayout(new FlowLayout(FlowLayout.LEFT));
        jP6.setPreferredSize(new Dimension(20,20));
        
        jPTop.add(jP1);
        jPTop.add(jP2);
        
        jPBottom.setLayout(new GridLayout(4, 1));
        jPBottom.add(jP3);
        jPBottom.add(jP4);
        jPBottom.add(jP5);
        jPBottom.add(jP6);
        
        this.add("North", jPTop);
        this.add("South", jPBottom);
    
        this.setLayout(new GridLayout(2, 1));
        this.setTitle("学生管理系统");
        this.setSize(500, 500);
        this.setLocation(150, 150);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        this.setVisible(true);
        this.setResizable(false);
        
        dbProcess = new DbProcess();
    }

    @Override
    public void actionPerformed(ActionEvent e) {
        if(e.getActionCommand().equals("查询")  
            && !jTFQueryField.getText().isEmpty()){
            System.out.println("actionPerformed(). 查询");
            String sQueryField = jTFQueryField.getText().trim();
            queryProcess(sQueryField);
            jTFQueryField.setText("");
        }else if(e.getActionCommand().equals("查询所有记录")) {
            System.out.println("actionPerformed(). 查询所有记录");
            queryAllProcess();
        }else if(e.getActionCommand().equals("插入")
                && !jTFSNo.getText().isEmpty()
                && !jTFSName.getText().isEmpty()
                && !jTFSSex.getText().isEmpty()
                && !jTFSAge.getText().isEmpty()
                && !jTFSSpecialty.getText().isEmpty()
                && !jTFSAddress.getText().isEmpty()){
            System.out.println("actionPerformed(). 插入");
            insertProcess();
        }else if(e.getActionCommand().equals("更新")
                && !jTFSNo.getText().isEmpty()
                && !jTFSName.getText().isEmpty()
                && !jTFSSex.getText().isEmpty()
                && !jTFSAge.getText().isEmpty()
                && !jTFSSpecialty.getText().isEmpty()
                && !jTFSAddress.getText().isEmpty()){
            System.out.println("actionPerformed(). 更新");
            updateProcess();
        }else if(e.getActionCommand().equals("删除当前记录")){
            System.out.println("actionPerformed(). 删除当前记录");
            deleteCurrentRecordProcess();
        }else if(e.getActionCommand().equals("删除所有记录")){
            System.out.println("actionPerformed(). 删除所有记录");
            deleteAllRecordsProcess();
        }
    }
    
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        DatabaseCourseDesign getcon = new  DatabaseCourseDesign();
    }
    
    public void queryProcess(String sQueryField)
    {
        try{
            // 建立查询条件
            String sql = "select * from student where ";
            String queryFieldStr = jCBSelectQueryFieldTransfer(SelectQueryFieldStr);
        
            if(queryFieldStr.equals("sAge")){//int sAge.
                sql = sql + queryFieldStr;
                sql = sql + " = " + sQueryField;
            }else{
                sql = sql + queryFieldStr;
                sql = sql + " = ";
                sql = sql + "'" + sQueryField + "';";
            }
            
            System.out.println("queryProcess(). sql = " + sql);
    
            dbProcess.connect();
            ResultSet rs = dbProcess.executeQuery(sql);
    
            // 将查询获得的记录数据,转换成适合生成JTable的数据形式
            studentVector.clear();
            while(rs.next()){
                Vector v = new Vector();
                v.add(rs.getString("sNo"));
                v.add(rs.getString("sName"));
                v.add(rs.getString("sSex"));
                v.add(Integer.valueOf(rs.getInt("sAge")));
                v.add(rs.getString("sSpecialty"));
                v.add(rs.getString("sAddress"));
                studentVector.add(v);
            }
            
            studentJTable.updateUI();

            dbProcess.disconnect();
        }catch(SQLException sqle){
            System.out.println("sqle = " + sqle);
            JOptionPane.showMessageDialog(null,
                "数据操作错误","错误",JOptionPane.ERROR_MESSAGE);
        }catch(Exception e){
            System.out.println("e = " + e);
            JOptionPane.showMessageDialog(null,
                "数据操作错误","错误",JOptionPane.ERROR_MESSAGE);
        }
    }
    
    public void queryAllProcess()
    {
        try{
            // 建立查询条件
            String sql = "select * from student;";
            System.out.println("queryAllProcess(). sql = " + sql);
    
            dbProcess.connect();
            ResultSet rs = dbProcess.executeQuery(sql);

            // 将查询获得的记录数据,转换成适合生成JTable的数据形式
            studentVector.clear();
            while(rs.next()){
                Vector v = new Vector();
                v.add(rs.getString("sNo"));
                v.add(rs.getString("sName"));
                v.add(rs.getString("sSex"));
                v.add(Integer.valueOf(rs.getInt("sAge")));
                v.add(rs.getString("sSpecialty"));
                v.add(rs.getString("sAddress"));
                studentVector.add(v);
            }
            
            studentJTable.updateUI();

            dbProcess.disconnect();
        }catch(SQLException sqle){
            System.out.println("sqle = " + sqle);
            JOptionPane.showMessageDialog(null,
                "数据操作错误","错误",JOptionPane.ERROR_MESSAGE);
        }
    }
    
    public void insertProcess()
    {
        String sNo = jTFSNo.getText().trim();
        String sName = jTFSName.getText().trim();
        String sSex = jTFSSex.getText().trim();
        String sAge = jTFSAge.getText().trim();
        String sSpecialty = jTFSSpecialty.getText().trim();
        String sAddress = jTFSAddress.getText().trim();
        
        // 建立插入条件
        String sql = "insert into student values('";
        sql = sql + sNo + "','";
        sql = sql + sName + "','";
        sql = sql + sSex + "',";
        sql = sql + sAge + ",'";
        sql = sql + sSpecialty + "','";
        sql = sql + sAddress + "');";

        System.out.println("insertProcess(). sql = " + sql);
        try{
            if (dbProcess.executeUpdate(sql) < 1) {
                System.out.println("insertProcess(). insert database failed.");
            }
        }catch(Exception e){
            System.out.println("e = " + e);
            JOptionPane.showMessageDialog(null,
                "数据操作错误","错误",JOptionPane.ERROR_MESSAGE);
        }
        queryAllProcess();
    }

    public void updateProcess()
    {
        String sNo = jTFSNo.getText().trim();
        String sName = jTFSName.getText().trim();
        String sSex = jTFSSex.getText().trim();
        String sAge = jTFSAge.getText().trim();
        String sSpecialty = jTFSSpecialty.getText().trim();
        String sAddress = jTFSAddress.getText().trim();
        
        // 建立更新条件
        String sql = "update student set sName = '";
        sql = sql + sName + "', sSex = '";
        sql = sql + sSex + "', sAge = ";
        sql = sql + sAge + ", sSpecialty = '";
        sql = sql + sSpecialty + "', sAddress = '";
        sql = sql + sAddress + "'";
        sql = sql + " WHERE sNo = '" + sNo + "';";
        System.out.println("updateProcess(). sql = " + sql);
        try{
            if (dbProcess.executeUpdate(sql) < 1) {
                System.out.println("updateProcess(). update database failed.");
            }
        }catch(Exception e){
            System.out.println("e = " + e);
            JOptionPane.showMessageDialog(null,
                "数据操作错误","错误",JOptionPane.ERROR_MESSAGE);
        }
        queryAllProcess();
    }

    public void deleteCurrentRecordProcess()
    {
        String sNo = jTFSNo.getText().trim();
        
        // 建立删除条件
        String sql = "delete from student where sNo = '" + sNo + "';";
        System.out.println("deleteCurrentRecordProcess(). sql = " + sql);
        try{
            if (dbProcess.executeUpdate(sql) < 1) {
                System.out.println("deleteCurrentRecordProcess(). delete database failed.");
            }
        }catch(Exception e){
            System.out.println("e = " + e);
            JOptionPane.showMessageDialog(null,
                "数据操作错误","错误",JOptionPane.ERROR_MESSAGE);
        }
        queryAllProcess();
    }

    public void deleteAllRecordsProcess()
    {
        // 建立删除条件
        String sql = "delete from student;";
        System.out.println("deleteAllRecordsProcess(). sql = " + sql);
        try{
            if (dbProcess.executeUpdate(sql) < 1) {
                System.out.println("deleteAllRecordsProcess(). delete database failed.");
            }
        }catch(Exception e){
            System.out.println("e = " + e);
            JOptionPane.showMessageDialog(null,
                "数据操作错误","错误",JOptionPane.ERROR_MESSAGE);
        }
        queryAllProcess();
    }
    
    public String jCBSelectQueryFieldTransfer(String InputStr)
    {
        String outputStr = "";
        System.out.println("jCBSelectQueryFieldTransfer(). InputStr = " + InputStr);
        
        if(InputStr.equals("学号")){
            outputStr = "sNo";
        }else if(InputStr.equals("姓名")){
            outputStr = "sName";
        }else if(InputStr.equals("性别")){
            outputStr = "sSex";
        }else if(InputStr.equals("年龄")){
            outputStr = "sAge";
        }else if(InputStr.equals("专业")){
            outputStr = "sSpecialty";
        }else if(InputStr.equals("住址")){
            outputStr = "sAddress";
        }
        System.out.println("jCBSelectQueryFieldTransfer(). outputStr = " + outputStr);
        return outputStr;
    }
}
以下是运行全部查找结果出现的问题:

mysql数据库驱动加载成功
actionPerformed(). 查询所有记录
queryAllProcess(). sql = select * from student;
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown database 'infodb'
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:408)
    at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)
    at com.mysql.jdbc.Util.getInstance(Util.java:381)
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1030)
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:956)
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3536)
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3468)
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:917)
    at com.mysql.jdbc.MysqlIO.secureAuth411(MysqlIO.java:3974)
    at com.mysql.jdbc.MysqlIO.doHandshake(MysqlIO.java:1282)
    at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2142)
    at com.mysql.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:773)
    at com.mysql.jdbc.JDBC4Connection.<init>(JDBC4Connection.java:46)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:408)
    at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)
    at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:352)
    at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:282)
    at java.sql.DriverManager.getConnection(DriverManager.java:664)
    at java.sql.DriverManager.getConnection(DriverManager.java:270)
    at DbProcess.connect(DbProcess.java:42)
    at DatabaseCourseDesign.queryAllProcess(DatabaseCourseDesign.java:322)
    at DatabaseCourseDesign.actionPerformed(DatabaseCourseDesign.java:234)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2346)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
    at java.awt.Component.processMouseEvent(Component.java:6525)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3321)
    at java.awt.Component.processEvent(Component.java:6290)
    at java.awt.Container.processEvent(Container.java:2234)
    at java.awt.Component.dispatchEventImpl(Component.java:4881)
executeQuery(). sql = select * from student;
    at java.awt.Container.dispatchEventImpl(Container.java:2292)
    at java.awt.Component.dispatchEvent(Component.java:4703)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4898)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4533)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4462)
    at java.awt.Container.dispatchEventImpl(Container.java:2278)
    at java.awt.Window.dispatchEventImpl(Window.java:2739)
    at java.awt.Component.dispatchEvent(Component.java:4703)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:746)
    at java.awt.EventQueue.access$400(EventQueue.java:97)
    at java.awt.EventQueue$3.run(EventQueue.java:697)
    at java.awt.EventQueue$3.run(EventQueue.java:691)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:86)
    at java.awt.EventQueue$4.run(EventQueue.java:719)
    at java.awt.EventQueue$4.run(EventQueue.java:717)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:716)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    at DbProcess.executeQuery(DbProcess.java:74)
    at DatabaseCourseDesign.queryAllProcess(DatabaseCourseDesign.java:323)
    at DatabaseCourseDesign.actionPerformed(DatabaseCourseDesign.java:234)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2346)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
    at java.awt.Component.processMouseEvent(Component.java:6525)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3321)
    at java.awt.Component.processEvent(Component.java:6290)
    at java.awt.Container.processEvent(Container.java:2234)
    at java.awt.Component.dispatchEventImpl(Component.java:4881)
    at java.awt.Container.dispatchEventImpl(Container.java:2292)
    at java.awt.Component.dispatchEvent(Component.java:4703)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4898)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4533)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4462)
    at java.awt.Container.dispatchEventImpl(Container.java:2278)
    at java.awt.Window.dispatchEventImpl(Window.java:2739)
    at java.awt.Component.dispatchEvent(Component.java:4703)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:746)
    at java.awt.EventQueue.access$400(EventQueue.java:97)
    at java.awt.EventQueue$3.run(EventQueue.java:697)
    at java.awt.EventQueue$3.run(EventQueue.java:691)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:86)
    at java.awt.EventQueue$4.run(EventQueue.java:719)
    at java.awt.EventQueue$4.run(EventQueue.java:717)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:716)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)

搞了三天了,真的不会。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值