实现DBmanger的工具类

import java.sql.*;

public class DBManager {
    //  mysql驱动
	private static final String driverName="com.mysql.jdbc.Driver";
	//  数据库连接地址localhost:3307/school 改成自己的端口和数据库名称
	private static final String url="jdbc:mysql://localhost:3307/school?useUnicode=true&characterEncoding=utf-8";
	//  用户名和密码
	private static final String user="root",pwd="admin";

	public static Connection getConnection(){
		try {
		    //  加载驱动
			Class.forName(driverName);
			//  连接数据库 如上设置的url user pwd 分别为 url 连接地址 user 用户名  pwd 密码
			return DriverManager.getConnection(url, user, pwd);
		} catch (ClassNotFoundException e) {
			e.printStackTrace();
		} catch (SQLException e) {
			e.printStackTrace();
		}	
		return null;
	}

	public static int executeUpdate(String sql){
		Connection conn=null;
		Statement sta=null;
		try {
			conn = getConnection();
			//  实例化Statement对象
			sta = conn.createStatement();
			//  执行数据库更新操作
			return sta.executeUpdate(sql);
		} catch (SQLException e) {
			e.printStackTrace();
			return e.getErrorCode()*(-1);
		}
		finally{
			closeAll(conn,sta,null);
		}
	}
	
	//  释放资源
	public static void closeAll(Connection conn,Statement sta,ResultSet set){
		try {	
             if(set !=null)               
            	 set.close();		
            if(sta!=null)
            	sta.close();
			if(conn!=null)
				conn.close();
		} catch (SQLException e) {
			e.printStackTrace();
		}
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值