JDBC初学

使用JDBC链接oracle数据库的一般流程:

学习是一个不断挑战自我的过程,从不会到会,从不熟悉到熟悉,从菜鸟到高手的过程,其也是一个享受的过程...................................,以下是JDBC链接数据库的6个基本步骤:

import java.sql.*;
public class TestJDBCOrder {

public static void main(String[] args){

[color=green]//step 1: register driver;[/color]
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}

Connection conn=null;
Statement stm=null;
ResultSet rs=null;

try{
[color=green]//step2:connection database[/color]
String url="jdbc:oracle:thin:@127.0.0.1:1521:orcl";
conn=DriverManager.getConnection(url,"scott","tiger");

[color=green]//step3: create statement[/color]
stm=conn.createStatement();
String sql="select EMPNO,ENAME,SAL " +
"from emp";

[color=green]//step4: execute sql[/color]
rs=stm.executeQuery(sql);

[color=green]//step5: transaction resultset[/color]
while(rs.next()){
System.out.println(rs.getDouble(1)+"----"+rs.getString(2));
}
}catch(Exception e){
e.printStackTrace();
}finally{
[color=green]//step6: release resource[/color]
if(rs!=null) try{rs.close();}catch(Exception e){e.printStackTrace();}
if(stm!=null) try{stm.close();}catch(Exception e){e.printStackTrace();}
if(conn!=null) try{conn.close();}catch(Exception e){e.printStackTrace();}
}

}

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值