JDBC
Posted 吴。。。。。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JDBC相关的知识,希望对你有一定的参考价值。
1.加载驱动
Class.forName(driver_class);
2.创建数据库连接
DriverManager.getConnection(url,user,password);
3.创建PreparedStatement
PreparedStatement ps=connection.prepareStatement(sql);
4.执行sql语句
rs=ps.executeQuery();
5.处理结果集
while (rs.next()){
rs.getObject();
}
6关闭连接(资源从内由外关闭)
/从内到外关闭
if (resultSet!=null){
resultSet.close();
}
if (preparedStatement!=null){
preparedStatement.close();
}
if (connection!=null){
connection.close();
}
以上是关于JDBC的主要内容,如果未能解决你的问题,请参考以下文章