代码优化:JDBC中的查询功能(二)

本文通过四个部分,详细介绍了在JDBC中优化查询功能的过程。从优化前的代码开始,逐步展示尝试优化后的代码及其遇到的问题,如资源提前释放导致的运行错误。接着,提出了解决这一问题的方案,但指出该方案虽然有效,但增加了额外的代码负担。最后,文章推荐了一种利用多态和内部类进行优化的方法,既能避免资源关闭的问题,又提高了代码的复用性。
摘要由CSDN通过智能技术生成

一、优化之前的代码如下:

public class Test {
   
	public static void main(String[] args) {
   
		Connection connection = null;
		Statement statement = null;
		ResultSet resultSet = null;
		try {
   
			Class.forName("com.mysql.jdbc.Driver");
			//1、加载驱动
			connection = DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/test", "root", "root");
			//2、建立连接
			statement = connection.createStatement();
			//3、创建SQL语句对象
			String sql = "select * from user_info";
			//4、写SQL语句
			resultSet = statement.executeQuery(sql);
			//5、运行SQL语句
			while(resultSet.next()) {
   
				String id = resultSet.getString("id");
				String userName = resultSet.getString("user_name");
				String password = resultSet.getString("password");
				System.out.println(id+","+userName+","+password);
			}
			//用while循环和next()方法遍历user_info表
		} catch (Exception e) {
   
			e.printStackTrace();
		}finally {
   
			try {
   
				if (resultSet!=null) {
   
					resultSet.close();
				}
			} catch (SQLException e) {
   
				e.printStackTrace();
			}
			try {
   
				if (statement!=null) {
   
					statement.close();
				}
			} catch (SQLException e) {
   
				e.printStackTrace();
			}
			try {
   
				if (connection!=null) {
   
					connection.close();
				}
			} catch (
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值