SqlHelper类的编写

package com.zy.test;

import java.io.FileInputStream;
import java.io.IOException;
import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;
import java.util.concurrent.Callable;

public class SqlHelper {

	//定义需要的变量
	private static Connection ct = null;
	//在大多数情况下,我们使用的是 PreparedStatement 来替代 Statement
	//这样可以防止 sql 注入
	private static PreparedStatement ps = null;
	private static ResultSet rs = null;
	private static CallableStatement cs = null;
	
	public static Connection getCt() {
		return ct;
	}

	public static PreparedStatement getPs() {
		return ps;
	}

	public static ResultSet getRs() {
		return rs;
	}
	
	public static CallableStatement getCs() {
		return cs;
	}

	//连接数据库参数
	private static String url = "";
	private static String username = "";
	private static String driver = "";
	private static String password = "";
	
	private static Properties pp = null;
	private static FileInputStream fis = null;
	
	//加载驱动,只需要一次
	static{
		try {
			//从dbinfo.properties文件中读取配置信息
			pp = new Properties();
			fis = new FileInputStream("dbinfo.properties");
			pp.load(fis);
			url = pp.getProperty("url");
			username = pp.getProperty("username");
			driver = pp.getProperty("driver");
			password = pp.getProperty("password");
			Class.forName(driver);
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} finally{
			try {
				fis.close();
			} catch (Exception e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
			fis = null;
		}
	}
	
	//得到连接
	public static Connection getConnection(){
		
		try {
			ct = DriverManager.getConnection(url, username, password);
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		
		return ct;
	}
	
	//分页问题?
	public static ResultSet executeQuery2(){
		return null;
	}
	
	//调用存储过程,有返回Result
	//sql  call 过程(?,?,?)
	public static CallableStatement callPro2(String sql, String []inparameters, Integer []outparameters){
		
		try {
			
			ct = getConnection();
			cs = ct.prepareCall(sql);
			if (inparameters != null){
				for (int i = 0; i < inparameters.length; i++){
					cs.setObject(i + 1, inparameters[i]);
				}
			}
			
			//给out参数赋值
			if (outparameters != null){
				for (int i = 0; i < outparameters.length; i++){
					cs.registerOutParameter(inparameters.length + 1 + i, outparameters[i]);
				}
			}
			
			cs.execute();
			
		} catch (Exception e) {
			e.printStackTrace();
			throw new RuntimeException(e.getMessage());
			// TODO: handle exception
		} finally{
			//不需要关闭
		}
		
		return cs;
	}
	
	
	//调用存储过程
	//sql  像   {call 过程 (?,?,?)}
	public static void callPro1(String sql, String []parameters){
		
		try {
			
			ct = getConnection();
			cs = ct.prepareCall(sql);	
			
			//?号赋值
			if (parameters != null){
				for (int i = 0; i < parameters.length; i++){
					cs.setObject(i + 1, parameters[i]);
				}
			}
			cs.execute();
		} catch (Exception e) {
			e.printStackTrace();
			throw new RuntimeException(e.getMessage());
			// TODO: handle exception
		} finally{
			
			close(rs, cs, ct);
		}
	}
	
	
	//统一的select
	//ResultSet -> ArrayList
	public static ResultSet executeQuery(String sql, String []parameters){
		
		try {
			
			ct = getConnection();
			ps = ct.prepareStatement(sql);
			if (parameters != null && !parameters.equals("")){
				
				for (int i = 0; i < parameters.length; i++){
					ps.setString(i + 1, parameters[i]);
				}
			}
			rs = ps.executeQuery();
		} catch (Exception e) {
			e.printStackTrace();
			throw new RuntimeException(e.getMessage());
			// TODO: handle exception
		} finally{
//			close(rs, ps, ct);
		}
		
		return rs;
	}
	
	
	//如果有多个 update / delete / insert  【需要考虑事物】
	public static void executeUpdate2 (String sql[], String [][] parameters){
		
		try {
			
			//核心
			//1.获得连接
			ct = getConnection();
			
			//因为这时,用户传入的可能是多个sql语句
			ct.setAutoCommit(false);
			//....
			for (int i = 0; i < sql.length; i++){
				if (parameters[i] != null){
					ps = ct.prepareStatement(sql[i]);
					for (int j = 0; j < parameters[i].length; j++){
						ps.setString(j + 1, parameters[i][j]);
					}
					ps.executeUpdate();
				}
			}
			
			ct.commit();
		} catch (Exception e) {
			e.printStackTrace();
			
			//回滚
			try {
				ct.rollback();
			} catch (SQLException e1) {
				// TODO Auto-generated catch block
				e1.printStackTrace();
			}
			
			throw new RuntimeException(e.getMessage());
			// TODO: handle exception
		} finally{
			close(rs, ps, ct);
		}
	}
	
	//先写一个 update / delete / insert
	//sql 格式:update 表名   set 字段名=? where 字段 =?
	//parameters 应该是 {"abc",23};
	public static void executeUpdate (String sql, String [] parameters){
		
		// 1.创建一个ps
		try {
			
			ct = getConnection();
			ps = ct.prepareStatement(sql);
			//给?赋值
			if (parameters != null){
				for (int i = 0; i < parameters.length; i++){
					ps.setString(i + 1, parameters[i]);
				}
			}
			
			//执行
			ps.executeUpdate();
			
		} catch (Exception e) {
			e.printStackTrace();  //开发阶段
			//抛出异常,抛出运行异常,可以给调用该函数的函数一个选择
			//可以处理,也可以放弃处理
			throw new RuntimeException(e.getMessage());
		} finally{
			
			//关闭资源
			close(rs, ps, ct);
		}
	}
	
	//关闭资源的函数
	public static void close(ResultSet rs, Statement ps, Connection ct){
		if (rs != null){
			try {
				rs.close();
			} catch (Exception e) {
				// TODO: handle exception
				e.printStackTrace();
			}
		}
		if (ps != null){
			try {
				ps.close();
			} catch (Exception e) {
				// TODO: handle exception
				e.printStackTrace();
			}
		}
		if (ct != null){
			try {
				ct.close();
			} catch (Exception e) {
				// TODO: handle exception
				e.printStackTrace();
			}
		}
	}
}

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值