在上一篇文章Druid-创建Druid连接池中,我们已经创建好了Druid连接池,也就是创建好Druid工具类
接下来我们就使用该工具类执行SQL语句,测试该工具类是否可以正常工具
本文使用的数据是
/**
* 项目描述: 使用自定义编写的数据库Druid连接池的工具类获取连接进行sql查询操作
* 作 者: chain.xx.wdm
* 备 注:
*/
public class DruidPoolTest {
public static void main(String[] args) {
Connection connection = null;
Statement statement = null;
ResultSet resultSet = null;
try {
// 1.获取连接
connection = DruidUtils.getConnection();
// 2.获取Statement对象,执行sql查询
statement = connection.createStatement();
resultSet = statement.executeQuery("select name from employee where salary between 3000 and 5000");
// 3.处理结果集
while(resultSet.next()){
String ename = resultSet.getString("name");
System.out.println(ename);
}
} catch (SQLException throwables) {
throwables.printStackTrace();
} finally {
// 4.关闭对象
DruidUtils.close(connection, statement, resultSet);
}
}
}
返回正确结果