7 Star 0 Fork 0

廖帆/javaweb课程设计

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
JDBCUtil.java 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
软件2班赵文全 提交于 2023-07-02 12:44 . JDBCUtil
package com.southwind.util;
import java.sql.*;
public class JDBCUtil {
private static String driverName = "com.mysql.cj.jdbc.Driver";
private static String url = "jdbc:mysql://localhost:3306/dormitory?serverTimezone=GMT%2B8";
private static String user = "root";
private static String password = "123456";
static {
try {
Class.forName(driverName);
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
public static Connection getConnection(){
Connection connection = null;
try {
connection = DriverManager.getConnection(url, user, password);
} catch (SQLException throwables) {
throwables.printStackTrace();
}
return connection;
}
public static void release(Connection connection, Statement statement, ResultSet resultSet){
try {
if(connection != null){
connection.close();
}
if(statement != null){
statement.close();
}
if(resultSet != null){
resultSet.close();
}
} catch (SQLException throwables) {
throwables.printStackTrace();
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/asd_42_0/asdfg.git
git@gitee.com:asd_42_0/asdfg.git
asd_42_0
asdfg
javaweb课程设计
master

搜索帮助