簡體   English   中英

Java SQL查詢

[英]java sql queries

我有一個查詢。 我有一個數據庫,並且正在嘗試編寫代碼,以便可以從java軟件中創建數據庫中的記錄。

我有一個連接器類,它連接到數據庫,然后是一個registerStudent類,該類允許用戶在2個文本字段中輸入值。 然后應使用這些值在數據庫表中創建記錄。

當我點擊提交按鈕時,它給了我這個錯誤代碼:

Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at RegisterStudent$2.actionPerformed(RegisterStudent.java:99)

僅供參考-第99行代碼=

con.stmt.executeUpdate("INSERT INTO staff (Name, Profession)"+"VALUES"+"("+"'"+name+"',"+"'"+profession+"')");

這是我的registerStudent類的代碼:

import java.awt.Component;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.Border;
import javax.swing.border.LineBorder;
import javax.swing.JLabel;
import java.awt.Font;
import javax.swing.JTextField;
import javax.swing.JButton;
import javax.swing.JOptionPane;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.sql.SQLException;


public class RegisterStudent
{

    public RegisterStudent() {
        initialize();
    }

    public JFrame frmRegisterStudent;

    Connector con;
    private JTextField textField_1;
    private JTextField textField_2;

    // initialise the frame
    private void initialize() {
        frmRegisterStudent = new JFrame();
        frmRegisterStudent.setTitle("LEC AdminPro: RegisterStudents");
        frmRegisterStudent.setBounds(100, 100, 413, 225);
        frmRegisterStudent.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
        frmRegisterStudent.setLocationRelativeTo(null);


        Border border = LineBorder.createGrayLineBorder();
        frmRegisterStudent.getContentPane().setLayout(null);
        con = new Connector();

        JPanel panel_1 = new JPanel();
        panel_1.setBounds(0, 0, 397, 189);
        frmRegisterStudent.getContentPane().add(panel_1);
        panel_1.setBorder(border);
        panel_1.setLayout(null);

        JLabel lblRegister = new JLabel("Register Student");
        lblRegister.setFont(new Font("Tahoma", Font.BOLD, 12));
        lblRegister.setBounds(10, 11, 124, 20);
        panel_1.add(lblRegister);

        JLabel lblSurname = new JLabel("Name");
        lblSurname.setFont(new Font("Arial", Font.PLAIN, 11));
        lblSurname.setBounds(10, 63, 69, 14);
        panel_1.add(lblSurname);

        JLabel lblDob = new JLabel("Profession");
        lblDob.setFont(new Font("Arial", Font.PLAIN, 11));
        lblDob.setBounds(10, 88, 69, 14);
        panel_1.add(lblDob);

        textField_1 = new JTextField();
        textField_1.setColumns(10);
        textField_1.setBounds(104, 63, 266, 20);
        panel_1.add(textField_1);

        textField_2 = new JTextField();
        textField_2.setColumns(10);
        textField_2.setBounds(104, 88, 266, 20);
        panel_1.add(textField_2);


        JButton btnNewButton = new JButton("Cancel");
        btnNewButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent arg0) {
                Object[] options = {"Yes", "No"};
                Component form = null;
                int n = JOptionPane.showOptionDialog(form, "Would you like to cancel the new Registration?", "Exit Confirmation", JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE,  null, options, options);
                if(n == JOptionPane.YES_OPTION) {
                frmRegisterStudent.setVisible(false);
            }

        }
        });
        btnNewButton.setBounds(280, 119, 89, 23);
        panel_1.add(btnNewButton);

        JButton button = new JButton("Submit");
        button.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent arg0) {


            String name = textField_1.getText();    
            String profession = textField_1.getText();


                try {
            con.stmt.executeUpdate("INSERT INTO staff (Name, Profession)"+"VALUES"+"("+"'"+name+"',"+"'"+profession+"')");
            JOptionPane.showMessageDialog(frmRegisterStudent, "New Record has been added");

            } catch (SQLException e) {
            System.out.println("Record couldn't be added!");
            e.printStackTrace();
            }
            }
            });



        button.setBounds(181, 119, 89, 23);
        panel_1.add(button);


    }




    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {

            public void run() {
                    try {
                RegisterStudent window = new RegisterStudent();
                window.frmRegisterStudent.setVisible(true);
                } catch (Exception e) {
                e.printStackTrace();
                }
            }
        });

        public void setVisible(boolean b) {
        frmRegisterStudent.setVisible(true);

}    
}

看來問題出在Connector類中,該類具有未初始化的stmt字段。

使用它代替帶有NullPointerException的行

con.stmt = con.conn.prepareStatement("insert into staff (name, profession) values (?, ?)");
con.stmt.setString(1, name);
con.stmt.setString(2, profession);
con.stmt.executeUpdate();

但是請注意,這是非常糟糕的設計。

連接器是否為空? 我看到stmt是連接器中的一個字段,您初始化了嗎? 順便說一下,在您的情況下,使用預處理語句會更好,因為它會轉義字符串(例如,如果字符串中包含“'”)。

PreparedStatement pstmt = connection.prepareStatement("insert into staff (name, profession) values (?, ?)");
pstmt.setString(1, name);
pstmt.setString(2, profession);
pstmt.executeUpdate();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM