发布网友 发布时间:2024-10-23 01:03
共3个回答
热心网友 时间:2024-12-03 14:18
业务实现里。首先你要获得从页面传过来的两个值,一个用户名,一个密码。那么写个验证的方法。带入的参数是用户名和密码。这个方法去查数据库,带有返回值,如果返回记录是1,肯定是验证通过了。如果返回是0.那么没有此用户。明白?
热心网友 时间:2024-12-03 14:17
<%
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url="jdbc:oracle:thin:@ServerIP:1521";
String user="yourname";
String password="yourpass";
Connection conn= DriverManager.getConnection(url,user,password);
Statement stmt=conn.createStatement();
String sql="select * from yourtable";
ResultSet rs=stmt.executeQuery(sql);
while(rs.next()) {
//process
}
rs.close();
stmt.close();
conn.close();
%>
热心网友 时间:2024-12-03 14:24
struts中提供那么多的校验器你不用 什么密码验证 邮件验证 正则表达式验证之类的 怎么非得用jquery实现呢 哪个更简单
热心网友 时间:2024-12-03 14:23
业务实现里。首先你要获得从页面传过来的两个值,一个用户名,一个密码。那么写个验证的方法。带入的参数是用户名和密码。这个方法去查数据库,带有返回值,如果返回记录是1,肯定是验证通过了。如果返回是0.那么没有此用户。明白?
热心网友 时间:2024-12-03 14:22
<%
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url="jdbc:oracle:thin:@ServerIP:1521";
String user="yourname";
String password="yourpass";
Connection conn= DriverManager.getConnection(url,user,password);
Statement stmt=conn.createStatement();
String sql="select * from yourtable";
ResultSet rs=stmt.executeQuery(sql);
while(rs.next()) {
//process
}
rs.close();
stmt.close();
conn.close();
%>
热心网友 时间:2024-12-03 14:25
struts中提供那么多的校验器你不用 什么密码验证 邮件验证 正则表达式验证之类的 怎么非得用jquery实现呢 哪个更简单