JDBC的步骤

来源:互联网 发布:wp 主题引入js函数 编辑:程序博客网 时间:2024/05/01 12:30

<!-- /* 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中的被管理对象