首页 > 代码库 > JDBC技术

JDBC技术

 

利用传统的jdbc操作数据库的步骤:获取连接→创建Statement→执行数据操作→获取结果→关闭Statement→关闭结果集→关闭连接;

 

技术分享
//1.获得连接Connection conn = driver.connect(url, info);String sql="...";     //sql语句//2.获取statement对象Statement statement = conn.createStatement();//3.执行statement.executeUpdate(sql);//4.关闭statement.close();conn.close();
View Code

 

JDBC操作数据库步骤概述如下:

1.注册加载驱动类

//1.创建一个Driver实现类的对象Driver driver = new com.mysql.jdbc.Driver();//注意抛异常

2.获取连接

//2.准备 url 和 infoString url = "jdbc:mysql://localhost:3306/test";//Oracle:"jdbc:oracle:thin:@localhost:1512:sid"//SQLServer:"jdbc:microsoft:sqlserver//localhost:1433:DatabaseName=sid"//MySql:"jdbc:mysql://localhost:3306/sid"

3.创建语句对象

4.执行SQL语句(excute)

5(可选).处理结果

6.关闭相关对象(注意顺序:依次为ResultSet、Statement/PreparedStatement、Connction)

JDBC技术