当前位置:网站首页>数据库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数据库为例
边栏推荐
猜你喜欢
随机推荐
【HIT-SC-LAB1】哈工大2022软件构造 实验1
JUC锁框架——初识AQS
注册表设置默认浏览器 win7,winserver 2008,winserver 2012
Treating as key frame since WebRTC-SpsPpsIdrIsH264Keyframe is disabled 解决
target has libraries with conflicting names: libcrypto.a and libssl.a.
Pipe redirection
Usage of SFTP
指针的运算【C语言】
实现高并发服务器(二)
[Development Miscellaneous][Editor][Code Reading]ctags & vim
JUC锁框架——基于AQS的实现,从ReentrantLock认识独占和共享
【HIT-SC-MEMO6】哈工大2022软件构造 复习笔记6
【C语言】数组名是什么
位段-C语言
无一技之长学什么可以做到月入上万?
win10下mediasoup搭建过程中的一些坑记录
【HIT-SC-MEMO2】哈工大2022软件构造 复习笔记2
Multi-threaded sequential output
Miscellaneous [development] [VS Code] remote - SSD retry failed
C语言无符号整型运算









