当前位置:网站首页>数据库JDBC DAO层方法
数据库JDBC DAO层方法
2022-08-04 05:33:00 【Jorge666】
public class BaseDao {
public static final String URL = "jdbc:mysql://localhost:3306/school?useunicode=true&characterEncoding=utf-8";
public static final String USER = "root";
public static final String PASSWORD = "1234";
public static final String Driver = "com.mysql.jdbc.Driver";
public static Connection getConnection() {
Connection connection = null;
try {
// 1.加载驱动
Class.forName(Driver);
// 2建立连接
connection = DriverManager.getConnection(URL, USER, PASSWORD);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return connection;
}
public static int commonExecuteUpdate(String sql, Object[] params) {
int row = 0;
PreparedStatement preparedStatement = null;
Connection connection = null;
try {
connection = getConnection();
preparedStatement = connection.prepareStatement(sql);
for (int i = 0; i < params.length; i++) {
preparedStatement.setString(i + 1, params[i].toString());
}
row = preparedStatement.executeUpdate();
} catch (SQLException e) {
e.printStackTrace();
} finally {
closeResources(preparedStatement, connection, null);
}
return row;
}
public static ResultSet commonExecuteQuery(String sql, Object[] params) {
ResultSet resultSet = null;
PreparedStatement preparedStatement = null;
try {
preparedStatement = getConnection().prepareStatement(sql);
for (int i = 0; i < params.length; i++) {
preparedStatement.setString(i + 1, params[i].toString());
}
resultSet = preparedStatement.executeQuery(sql);
} catch (SQLException e) {
e.printStackTrace();
}
return resultSet;
}
public static void closeResources(PreparedStatement preparedStatement, Connection connection, ResultSet resultSet) {
if (resultSet != null) {
try {
resultSet.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
if (preparedStatement != null) {
try {
preparedStatement.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
if (connection != null) {
try {
connection.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
以连接到本地school数据库为例
边栏推荐
猜你喜欢
随机推荐
位段-C语言
怎样才能转行成功?
基于Webrtc和Janus的多人视频会议系统开发5 - 发布媒体流到Janus服务器
分布式cache项目
C#找系统文件夹路径
基于Webrtc和Janus的多人视频会议系统开发4 - 改造信令交互系统完成sdp交换过程
【独立游戏体验计划】学习记录
LeetCode_Dec_3rd_Week
C语言对文件的操作(完整版)
LeetCode_Nov_2nd_Week
counting cycle
动态内存管理-C语言
【HIT-SC-LAB1】哈工大2022软件构造 实验1
Arduino之ESP8266编程学习总结体会
通用解决端口占用问题
安装Apache服务时出现的几个问题, AH00369,AH00526,AH00072....
你要悄悄学网络安全,然后惊艳所有人
枚举和联合(自定义类型)-C语言
C语言结构体(必须掌握版)
JUC并发容器——跳表