当前位置:网站首页>数据库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数据库为例
边栏推荐
猜你喜欢
益智小游戏- 算算总共多少正方形
JUC锁框架——基于AQS的实现,从ReentrantLock认识独占和共享
线性表之动态数组(ArrayList)的自实现
2020-03-27
Question 1000: Input two integers a and b, calculate the sum of a+b, this question is multiple sets of test data
JVM intro
C语言结构体(必须掌握版)
基于Webrtc和Janus的多人视频会议系统开发5 - 发布媒体流到Janus服务器
Fabric v1.1 environment construction
C语言数组的深度分析
随机推荐
实现高并发服务器(二)
MySQL批量修改时间字段
JUC并发容器——跳表
树和二叉树
FAREWARE ADDRESS
[English learning][sentence] good sentence
Shell基础
[Development miscellaneous][Debug]debug into kernel
LeetCode_Nov_2nd_Week
基于Webrtc和Janus的多人视频会议系统开发4 - 改造信令交互系统完成sdp交换过程
抽象类、内部类和接口
arm learning-1-development board
LeetCode_22_Apr_2nd_Week
基于Webrtc和Janus的多人视频会议系统开发5 - 发布媒体流到Janus服务器
Usage of SFTP
JUC锁框架——初识AQS
[Development Miscellaneous][Editor][Code Reading]ctags & vim
EL表达式
杰哥带大家做一次meterpreter内网渗透模拟
Unity Day03