JDBC的步骤

<!-- /* Font Definitions */ @font-face {font-family:宋体; panose-1:2 1 6 0 3 1 1 1 1 1; mso-font-alt:SimSun; mso-font-charset:134; mso-generic-font-family:auto; mso-font-pitch:variable; mso-font-signature:3 680460288 22 0 262145 0;}@font-face {font-family:"/@宋体"; panose-1:2 1 6 0 3 1 1 1 1 1; mso-font-charset:134; mso-generic-font-family:auto; mso-font-pitch:variable; mso-font-signature:3 680460288 22 0 262145 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; mso-pagination:none; font-size:10.5pt; mso-bidi-font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:宋体; mso-font-kerning:1.0pt;} /* Page Definitions */ @page {mso-page-border-surround-header:no; mso-page-border-surround-footer:no;}@page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt; mso-header-margin:36.0pt; mso-footer-margin:36.0pt; mso-paper-source:0;}div.Section1 {page:Section1;}-->

1.    加载某个数据库的驱动(Driver类),通常使用Class.forName(“驱动的类名“);

 

2.    连接数据库――

 

           Connection con = DriverManager.getConnection(url,username,password)

 

3.    得到会话――Statementstmt = con.createStatement();

 

4.    执行操作――Resultrs = stmt.executeQuery(SQL查询语句”)

 

5.    处理结果――

 

   while(rs.next()){

 

       String col1 = rs.getString(1);

 

       ……

 

    }

 

    简单吧!整个JDBC中可以变化的一般是:

 

1.      可以由Connection对象创建StatementPreparedStatementCallableStatement创建三种类型的Statement

 

2.      可以创建多种类型的ResultSet:支持单向移动和个自由移动;可更新的和不可更新的;支持不同等级的交易的…..

 

3.      数据输入的批处理。

 

4.      结果集中特殊类型(BlobClobArraryRefStruct)列的操作。

 

5.      这些特殊类型的录入数据库。

 

6.      javax.sql包中特殊结果集(CachedRowSetJdbcRowSetWebRowSet)的操作。

 

7.      其它的就是一个DataSource了,也很简单!一个J2EE中的被管理对象

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值