首页>代码>java swing银行管理系统,java实现的毕业设计>/银行系统(0524)/BankManager/src/com/bank/dao/CusVerifyDao.java
package com.bank.dao;

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

import com.bank.model.Customer;

public class CusVerifyDao {
	
	
/**
 * 
 * @param con
 * @param operator
 * @return
 * @throws Exception
 */
	public Customer login(Connection con,Customer customer)throws Exception{
		Customer resultUser=null;
		String sql="select * from customer where cuAccount=? and cuPassword=?";
		PreparedStatement pstmt=con.prepareStatement(sql);
		pstmt.setString(1, customer.getCuAccount());
		pstmt.setString(2, customer.getCuPassword());
		ResultSet rs=pstmt.executeQuery();
		if(rs.next()){
			resultUser=new Customer();
			resultUser.setId(rs.getString("id"));
			resultUser.setCuName(rs.getString("cuName"));
			resultUser.setCuPassword(rs.getString("cuPassword"));
			resultUser.setCuIDCard(rs.getString("cuIDCard"));
			resultUser.setCuAccount(rs.getString("cuAccount"));
			resultUser.setCuPhone(rs.getString("cuPhone"));
			resultUser.setCuAddress(rs.getString("cuAddress"));
		}
		return resultUser;
	}
	
	/**
	 * 
	 * @param con
	 * @param operator
	 * @return
	 * @throws Exception
	 */
		public Customer traVerify(Connection con,String cuAccount)throws Exception{
			Customer resultUser=null;
			String sql="select cuPassword from customer where cuAccount=?";
			PreparedStatement pstmt=con.prepareStatement(sql);
			pstmt.setString(1, cuAccount);
			ResultSet rs=pstmt.executeQuery();
			if(rs.next()){
				resultUser=new Customer();
				resultUser.setCuPassword(rs.getString("cuPassword"));
			}
			return resultUser;
		}

}
最近下载更多
胡棋俊  LV4 11月17日
zvcbnlk  LV2 9月24日
baowanhong  LV2 2023年6月11日
微信网友_6212133351690240  LV2 2022年12月27日
做你的景天  LV7 2022年11月23日
罗清晨  LV13 2022年9月27日
qwqiwiw  LV4 2022年9月19日
testuser1234567  LV24 2022年5月31日
微信网友_5981140928106496  LV5 2022年5月30日
Simon_ydl  LV5 2022年5月25日
最近浏览更多
胡棋俊  LV4 11月17日
zwn258000 10月24日
暂无贡献等级
zvcbnlk  LV2 9月16日
xzg123456  LV6 6月20日
人间蒸发  LV23 3月31日
1049066887  LV13 3月3日
ddzfgh  LV1 2023年12月25日
pangzhihui  LV14 2023年12月9日
李朝磊  LV18 2023年12月3日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友