package dao; import java.sql.*; import demo.database; import entity.Books; public class Userdao { database db;public Books book; public Userdao(){ book=new Books(); db=new database(); } public boolean dologin(String name,String pwd){ Connection con =db.getConnection();//建立数据库连接,获得Connection对象。 if(con==null) System.out.println("连接数据库失败"); //创建SQL语句 String sql="select * from users where LoginId=? and LoginPwd=?"; try { PreparedStatement stmt=con.prepareStatement(sql);//根据SOL语句建立PreparedStatement对象 stmt.setString(1, name);//设置参数 stmt.setString(2, pwd);//设置参数 ResultSet rSet=stmt.executeQuery();//执行SQL语句 if(rSet.next()){ return true; }else{ return false; } } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } finally{ db.CloseConnection(con);//关闭数据库连接,释放资源 } return false; } }
最近下载更多
孤峰远影 LV2
2023年12月20日
768881787 LV7
2023年12月20日
微信网友_6445756515635200 LV3
2023年12月18日
李朝磊 LV18
2023年12月3日
hongdongdong LV14
2023年8月9日
微信网友_6431017932869632 LV1
2023年4月13日
ma2519096 LV1
2022年11月26日
你们的代码都是我的了 LV16
2022年11月13日
微信网友_6017665021366272 LV1
2022年6月25日
1719863922 LV11
2022年6月13日
最近浏览更多
233002037 LV3
10月20日
dnuygwqudyg
6月28日
暂无贡献等级
xzw135246789 LV1
6月15日
微信网友_6808953284677632 LV2
6月5日
郑郭辉
6月3日
暂无贡献等级
123456cjj LV1
6月2日
1941549176 LV4
4月29日
周青松 LV3
3月18日
pi-nang LV2
3月11日
ddzfgh LV1
2023年12月25日