JDBC工具类

Posted lytuser

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JDBC工具类相关的知识,希望对你有一定的参考价值。

package com.jdbc.demo3;

import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;

import org.junit.Test;

import com.jdbc.utils.JDBCUtils;

public class JDBCDemo3 {
@Test
/**
* 查询操作,使用工具类
*/
public void demo1() {
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
//获得连接
conn =JDBCUtils.getConnection();
//创建执行SQL语句的对象
stmt = conn.createStatement();
//编写SQL;
String sql = "select * from user";
//执行查询
rs = stmt.executeQuery(sql);
//遍历结果集
while(rs.next()) {
System.out.println(rs.getInt("id")+" "+rs.getString("username")+" "+rs.getString("password"));
}
}catch(Exception e) {
e.printStackTrace();
}finally {
//释放资源
JDBCUtils.release(rs, stmt,conn);
}
}

}

以上是关于JDBC工具类的主要内容,如果未能解决你的问题,请参考以下文章

一个JDBC封装工具类

JDBC工具类

JDBC-02-笔记

00313_JDBC工具类

JDBC工具类的抽取

JDBC工具类