此代码由于某种原因在线程" AWT-EventQueue-0"中抛出异常。 java.lang.NullPointerException,我无法弄清楚原因。它是从一个单独的类中的actionListener调用的,并使用不同类中的查询。
代码应该将结果集中的fname放入fNameIn JTextField中。
public void fillFieilds() throws SQLException {
name = JOptionPane.showInputDialog(null, "Enter the name of the user you want to edit");
rset = databaseQueries.fillUserFields(name);
addUserGUI.setfNameIn(rset.getString("fname"));
Update update = new Update();
update.setVisible(true);
}