首页>代码>jsp+mysql开发最简单的商品增删改查的实例>/prjtest/src/com/phome/db/UsersDao.java
package com.phome.db;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

import com.phome.vo.UsersVo;

public class UsersDao {
	public UsersVo getUsersByNameAndPwd(String name,String pwd)
	{
		String sql="select * from users where uname=? and upass=?";
		DbHelper dbhelp=new DbHelper();
		Connection conn=null;
		PreparedStatement pst=null;
		try {
			conn=dbhelp.getConnect();
			pst=conn.prepareStatement(sql);
			pst.setString(1, name);
			pst.setString(2, pwd);
			ResultSet rs=pst.executeQuery();
			if (rs.next())
			{
				UsersVo user = new UsersVo();
				user.setId(rs.getInt("id"));
				user.setName(rs.getString("uname"));
				user.setPwd(rs.getString("upass"));
				user.setSex(rs.getInt("sex"));
				user.setFavs(rs.getString("favs"));
				user.setCity(rs.getString("city"));
				user.setJianjie(rs.getString("jianjie"));
				return user;
			
			}
		} catch (SQLException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		finally
		{
			try {
				if (pst!=null)
				{
					pst.close();
				}
				if (conn!=null && !conn.isClosed())
				{
					conn.close();
				}
			} catch (SQLException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
		
		return null;
	}
}
最近下载更多
一起加油  LV4 4月19日
PSSDZH  LV3 1月22日
asddwh  LV12 2023年12月25日
wdawdawda  LV1 2023年11月12日
下雨了z  LV1 2023年6月25日
ericxu1116  LV24 2023年6月14日
sdhfkh  LV4 2023年6月12日
jiuyue1  LV1 2023年6月7日
微信网友_6509411715747840  LV1 2023年6月7日
2393183118  LV1 2023年6月6日
最近浏览更多
一起加油  LV4 4月19日
xinnnnn  LV1 2月28日
PSSDZH  LV3 1月22日
asddwh  LV12 2023年12月25日
ddzfgh  LV1 2023年12月25日
xiongwei11231  LV8 2023年12月21日
fff2003  LV6 2023年12月14日
李林112233  LV2 2023年12月4日
小小学代码  LV1 2023年12月2日
321170193  LV6 2023年11月12日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友