当前位置:网站首页>数据库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数据库为例
边栏推荐
猜你喜欢
随机推荐
file permission management ugo
【HIT-SC-LAB2】哈工大2022软件构造 实验2
给想要转行渗透测试人的忠告
Vmmem 进程(WSL2)消耗内存巨大
POI及EasyExcel
淘宝分布式文件系统存储(二)
硬件描述语言Verilog HDL学习笔记之模块介绍
Implementation of CAS lock-free queue
最全的最详细的指针讲解(C语言)
Shell基础
C语言对文件的操作(完整版)
Treating as key frame since WebRTC-SpsPpsIdrIsH264Keyframe is disabled 解决
webrtc代码解读二:音视频播放同步过程
gRPC intro 1:RPC
SFTP的用法
【HIT-SC-MEMO2】哈工大2022软件构造 复习笔记2
以太网 ARP
无一技之长学什么可以做到月入上万?
【HIT-SC-MEMO5】哈工大2022软件构造 复习笔记5
[Development miscellaneous][Debug]debug into kernel









