我想从他们输入到文本字段中的用户名和密码中检索用户名。我想将这些值作为参数传递给方法,然后该方法将识别用户名以进行打印。请帮忙。像这样的东西......
public void getUser(String username, String password)throws SQLException{
String qry = "SELECT UserName From USER....";
Connection con = null;
PreparedStatement stmt = null;
try{
con = DriverManager.getConnection("URL");
stmt = con.prepareStatement(qry);
stmt.executeUpdate();