我的Meteor应用程序有一个弹出窗口,其中列出了团队成员完成的任务。团队成员只需打开弹出窗口,填写输入字段然后按回车键即可发出新任务完成信号。 碰巧,由于某种原因,表单提交事件被多次触发,然后我在Mongodb中获得了重复的记录。
这是我的代码:
String sql = "select * from login_tbl where usern=? and pass=?";
try{
Conn();
ps=conn.prepareStatement(sql);
ps.setString(1,txtUser.getText());
ps.setString(2,new String(txtPass.getText()));
rs=ps.executeQuery();
if (rs.next()){
//about s= new about();
//
//s.setVisible(true);
new CarRent().setVisible(true);
dispose();
}
else
{
JOptionPane.showMessageDialog(null, "Password or Username is incorrect");
}
}
catch(Exception e)
{
JOptionPane.showMessageDialog(null, e);
}