7、 Java数据库编程包含哪些类?Java数据库编程的基本过程是啥
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了7、 Java数据库编程包含哪些类?Java数据库编程的基本过程是啥相关的知识,希望对你有一定的参考价值。
参考技术A import java.sql.*;public final class DBUtils
//1.数据库在哪里,叫什么名字(连接串)
private static final String url="数据库连接串/数据库名";
//2.用哪个驱动连接数据库(驱动串)
private static final String driver="数据库驱动串";
//通过静态块加载驱动
static
try
//1.加载驱动串
Class.forName(driver); //反射加载,new Driver();
catch (ClassNotFoundException e)
e.printStackTrace();
public static Connection getConnection()throws Exception
return DriverManager.getConnection(url, "实例名", "密码");
public static void close(ResultSet rs)
try
//语句对象销毁
rs.close();
catch(Exception ex)
ex.printStackTrace();
public static void close(PreparedStatement pstm)
try
//语句对象销毁
pstm.close();
catch(Exception ex)
ex.printStackTrace();
public static void close(Connection conn)
try
//连接对象销毁
conn.close();
catch(Exception ex)
ex.printStackTrace();
本回答被提问者采纳 参考技术B 类:DriverManager Connection Statement Resultset
过程:建立数据源 装入JDBC驱动程序 建立连接 执行SQL语句 检索结果 关闭连接连接
以上是关于7、 Java数据库编程包含哪些类?Java数据库编程的基本过程是啥的主要内容,如果未能解决你的问题,请参考以下文章