/*
* Created on 2004-12-16
*
* TODO To change the template for this generated file go to
* Window - PReferences - java - Code Style - Code Templates
*/
package util;
import java.sql.ResultSet;
import java.sql.SQLException;
/**
* @author zhang
* MySQL的子類,專門驗證登錄
* 驗證用戶合法與否
*/
public class PassSql extends Mysql{
public boolean isValidate(String sql,String userName,String passWord) throws SQLException{
init(sql);
this.setString(1,userName);
this.setString(2,password);
ResultSet rs = this.executeQuery();
if (rs.next()) {
return true;
}
return false;
}
}
新聞熱點
疑難解答