程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> Oracle 數據庫中三種不同類型的JDBC驅動

Oracle 數據庫中三種不同類型的JDBC驅動

編輯:Oracle數據庫基礎

以下的文章主要介紹的是Oracle 數據庫裡三種不同類型的JDBC驅動,我們大家都知道Oracle 中的jdbc驅動主要有以下的三類,即,1、JDBC OCI: oci是Oracle call interface的縮寫,此驅動類似於傳統的ODBC 驅動。

因為它需要Oracle Call Interface and Net8,所以它需要在運行使用此驅動的Java程序的機器上安裝客戶端軟件,其實主要是用到orcale客戶端裡以dll方式提供的oci和服務器配置。

2、JDBC Thin: thin是for thin clIEnt的意思,這種驅動一般用在運行在WEB浏覽器中的JAVA程序。它不是通過OCI or Net8,而是通過Java sockets進行通信,是純Java實現的驅動,因此不需要在使用JDBC Thin的客戶端機器上安裝orcale客戶端軟件,所以有很好的移植性,通常用在web開發中。

3、JDBC KPRB: 這種驅動由直接存儲在數據庫中的JAVA程序使用,如Java Stored Procedures 、triggers、Database JSP's。因為是在服務器內部使用,他使用默認或當前的會話連接來訪數據庫,不需要用戶名密碼等,也不需要數據庫url。

在應用開發的時候,通常是用前面兩種方式,下面是數據庫url的寫法:

  1. jdbc:Oracle :thin:@server ip: service  
  2. jdbc:Oracle :oci:@service  

看來oci的還更加簡潔,ip可以省掉不寫了,這是因為oci驅動通過客戶端的native Java methods來條用c library方式來訪問數據庫服務器,使用到了客戶端的net manager裡的數據庫服務配置。

因為oci方式最終與數據庫服務器通信交互是用的c library庫,理論上性能優於thin方式,據說主要是體現在blob字段的存取上。

開發Oracle 數據庫經常用到的 pl sql dev使用的估計是oci方式,需要安裝客戶端,但也可以不安裝,但是要抽出其中的oci相關的dll即jar包、注冊環境變量、配置偵聽文件等。Oracle 在10g之後提供了精簡客戶端,安裝的過程應該包括上面的那些工作。

  1. How does one connect with the JDBC OCI Driver?  
  2. One must have Net8 (SQL*Net) installed and working before attempting to use one of the OCI drivers.  
  3. Code: [Copy to clipboard]  
  4. import Java.sql.*;  
  5. class dbAccess {  
  6. public static void main (String args []) throws SQLException  
  7. {  
  8. try {  
  9. Class.forName ("Oracle .jdbc.driver.Oracle Driver");  
  10. } catch (ClassNotFoundException e) {  
  11. e.printStackTrace();  
  12. }  
  13. Connection conn = DriverManager.getConnection  
  14. ("jdbc:Oracle :oci8:@ORA1", "scott", "tiger");  
  15. // or oci9 @Service, userid, passWord  
  16. Statement stmt = conn.createStatement();  
  17. ResultSet rset = stmt.executeQuery (  
  18. "select BANNER from SYS.V_$VERSION"  
  19. );  
  20. while (rset.next())  
  21. System.out.println (rset.getString(1)); // Print col 1  
  22. stmt.close();  
  23. }  
  24. }  
  25. How does one connect with the JDBC KPRB Driver?  
  26. One can obtain a handle to the default or current connection 
    (KPRB driver) by calling the Oracle Driver.defaultConenction() method. 
    Please note that you do not need to specify a database URL, 
    username or passWord as you are already connected to a database session. 
    Remember not to close the default connection. 
    Closing the default connection might throw an exception in future releases of Oracle .  
  27. import Java.sql.*;  
  28. Code: [Copy to clipboard]  
  29. class dbAccess {  
  30. public static void main (String args []) throws SQLException  
  31. {  
  32. Connection conn = (new  
  33. Oracle .jdbc.driver.Oracle Driver()).defaultConnection();  
  34. Statement stmt = conn.createStatement();  
  35. ResultSet rset = stmt.executeQuery (  
  36. "select BANNER from SYS.V_$VERSION"  
  37. );  
  38. while (rset.next())  
  39. System.out.println (rset.getString(1)); // Print col 1  
  40. stmt.close();  
  41. }  
  42. }   

以上的相關內容就是對Oracle 數據庫中三種類型的JDBC驅動的介紹,望你能有所收獲。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved