基本步骤:
- 加载数据库驱动
- 建立连接
- 创建SQL语句
- 执行SQL语句
- 处理执行结果
- 释放资源
代码示例:
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement; import junit.framework.TestCase; public class JDBCTest
extends TestCase
{
@org.junit.Test
public void testJDBC() throws Exception{
// 1.加载驱动
//Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
//Class.forName("com.mysql.jdbc.Driver");
Class.forName("oracle.jdbc.driver.OracleDriver");
// 2.创建数据库连接对象
//Connection conn = DriverManager.getConnection("jdbc:sqlserver://localhost:1433;databaseName=db","sa","sqlpass");
//Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/db?useUnicode=true&characterEncoding=UTF-8","root","mysql");
Connection conn=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","scott","orcl");
// 3.创建数据库执行命令
Statement st=conn.createStatement();
PreparedStatement ps=conn.prepareStatement("SELECT * FROM EMP ORDER BY 8");
// 4.执行数据库命令
ResultSet rs=st.executeQuery("SELECT * FROM EMP ORDER BY 8");
ResultSet prs=ps.executeQuery();
// 5.处理执行结果
while(rs.next()){
int empno=rs.getInt("empno");
String ename=rs.getString(2);
Integer deptno=rs.getInt(8);
System.out.println("Statement---工号:"+empno+" 姓名:"+ename+" 部门:"+deptno);
}
while(prs.next()){
int empno=prs.getInt("empno");
String ename=prs.getString(2);
Integer deptno=prs.getInt(8);
System.out.println("PreparedStatement---工号:"+empno+" 姓名:"+ename+" 部门:"+deptno);
}
// 6.释放数据库资源
if(null!=rs||null!=prs){
rs.close();
prs.close();
}
st.close();
ps.close();
conn.close();
}
}
执行结果:
Statement---工号:7782 姓名:CLARK 部门:10
Statement---工号:7839 姓名:KING 部门:10
Statement---工号:7934 姓名:MILLER 部门:10
Statement---工号:7566 姓名:JONES 部门:20
Statement---工号:7902 姓名:FORD 部门:20
Statement---工号:7876 姓名:ADAMS 部门:20
Statement---工号:7369 姓名:SMITH 部门:20
Statement---工号:7788 姓名:SCOTT 部门:20
Statement---工号:7521 姓名:WARD 部门:30
Statement---工号:7844 姓名:TURNER 部门:30
Statement---工号:7499 姓名:ALLEN 部门:30
Statement---工号:7900 姓名:JAMES 部门:30
Statement---工号:7698 姓名:BLAKE 部门:30
Statement---工号:7654 姓名:MARTIN 部门:30
PreparedStatement---工号:7782 姓名:CLARK 部门:10
PreparedStatement---工号:7839 姓名:KING 部门:10
PreparedStatement---工号:7934 姓名:MILLER 部门:10
PreparedStatement---工号:7566 姓名:JONES 部门:20
PreparedStatement---工号:7902 姓名:FORD 部门:20
PreparedStatement---工号:7876 姓名:ADAMS 部门:20
PreparedStatement---工号:7369 姓名:SMITH 部门:20
PreparedStatement---工号:7788 姓名:SCOTT 部门:20
PreparedStatement---工号:7521 姓名:WARD 部门:30
PreparedStatement---工号:7844 姓名:TURNER 部门:30
PreparedStatement---工号:7499 姓名:ALLEN 部门:30
PreparedStatement---工号:7900 姓名:JAMES 部门:30
PreparedStatement---工号:7698 姓名:BLAKE 部门:30
PreparedStatement---工号:7654 姓名:MARTIN 部门:30