Oracle provides four different types of JDBC drivers, for use in different deployment scenarios. The 10.1.0 drivers can access Oracle 8.1.7 and higher. While all Oracle JDBC drivers are similar, some features apply only to JDBC OCI drivers and some apply only to the JDBC Thin driver.
JDBC OCI client-side driver: This is a JDBC Type 2 driver that uses Java native methods to call entrypoints in an underlying C library. That C library, called OCI (Oracle Call Interface), interacts with an Oracle database. The JDBC OCI driver requires an Oracle client installation of the same version as the driver.
The use of native methods makes the JDBC OCI driver platform specific. Oracle supports Solaris, Windows, and many other platforms. This means that the Oracle JDBC OCI driver is not appropriate for Java applets, because it depends on a C library.
Starting from 10.1.0, the JDBC OCI driver is available for install with the OCI Instant Client feature, which does not require a complete Oracle client-installation. Please refer to Oracle Call Interface for more information.
JDBC Thin client-side driver: This is a JDBC Type 4 driver that uses Java to connect directly to Oracle. It implements Oracle's SQL*Net Net8 and TTC adapters using its own TCP/IP based Java socket implementation. The JDBC Thin driver does not require Oracle client software to be installed, but does require the server to be configured with a TCP/IP listener.
Because it is written entirely in Java, this driver is platform-independent. The JDBC Thin driver can be downloaded into any browser as part of a Java application. (Note that if running in a client browser, that browser must allow the applet to open a Java socket connection back to the server.)
JDBC Thin server-side driver: This is another JDBC Type 4 driver that uses Java to connect directly to Oracle. This driver is used internally within the Oracle database. This driver offers the same functionality as the client-side JDBC Thin driver (above), but runs inside an Oracle database and is used to access remote databases.
Because it is written entirely in Java, this driver is platform-independent. There is no difference in your code between using the Thin driver from a client application or from inside a server.
连接方式有以下几种:
Oralce provides four types of JDBC driver.
Thin Driver, a 100% Java driver for client-side use without an Oracle installation, particularly with applets. The Thin driver type is thin. To connect user scott with password tiger to a database with SID (system identifier) orcl through port 1521 of host myhost, using the Thin driver, you would write :
Connection conn = DriverManager.getConnection
("jdbc:oracle:thin:@myhost:1521:orcl", "scott", "tiger");
OCI Driver for client-side use with an Oracle client installation. The OCI driver type is oci. To connect user scott with password tiger to a database with SID (system identifier) orcl through port 1521 of host myhost, using the OCI driver, you would write :
Connection conn = DriverManager.getConnection
("jdbc:oracle:oci:@myhost:1521:orcl", "scott", "tiger");
Note that you can also specify the database by a TNSNAMES entry. You can find the available TNSNAMES entries listed in the file tnsnames.ora on the client computer from which you are connecting. For example, if you want to connect to the database on host myhost as user scott with password tiger that has a TNSNAMES entry of MyHostString, enter:
Connection conn = DriverManager.getConnection
("jdbc:oracle:oci8:@MyHostString","scott","tiger");
If your JDBC client and Oracle server are running on the same machine, the OCI driver can use IPC (InterProcess Communication) to connect to the database instead of a network connection. An IPC connection is much faster than a network connection.
Connection conn = DriverManager.getConnection
("jdbc:oracle:oci8:@","scott","tiger");
Server-Side Thin Driver, which is functionally the same as the client-side Thin driver, but is for code that runs inside an Oracle server and needs to access a remote server, including middle-tier scenarios. The Server-Side Thin driver type is thin and there is no difference in your code between using the Thin driver from a client application or from inside a server.
Server-Side Internal Driver for code that runs inside the target server, that is, inside the Oracle server that it must access. The Server-Side Internal driver type is kprb and it actually runs within a default session. You are already "connected". Therefore the connection should never be closed.
To access the default connection, write:
DriverManager.getConnection("jdbc:oracle:kprb:");
or:
DriverManager.getConnection("jdbc:default:connection:");
You can also use the Oracle-specific defaultConnection() method of the OracleDriver class which is generally recommended:
OracleDriver ora = new OracleDriver();
Connection conn = ora.defaultConnection();
Note: You are no longer required to register the OracleDriver class for connecting with the Server-Side Internal driver, although there is no harm in doing so. This is true whether you are using getConnection() or defaultConnection() to make the connection.
Any user name or password you include in the URL string is ignored in connecting to the server default connection. The DriverManager.getConnection() method returns a new Java Connection object every time you call it. Note that although the method is not creating a new physical connection (only a single implicit connection is used), it is returning a new object.
Again, when JDBC code is running inside the target server, the connection is an implicit data channel, not an explicit connection instance as from a client. It should never be closed.
分享到:
相关推荐
2. ** Shared Library Driver (jdbc:oracle:oci)**:也称为OCI驱动,依赖于Oracle的本地客户端库(Oracle Client)。这种驱动适合于在同一台机器上运行的应用程序和数据库,或者需要访问Oracle特定功能(如LOB、...
其中,Oracle 提供了两种主要类型的 JDBC 驱动:JDBC-Oracle-Thin 和 OCI(Oracle Call Interface)驱动。本文主要关注的是 JDBC-Oracle-Thin 驱动。 ##### 1.1 JDBC-Oracle-Thin 的定义 JDBC-Oracle-Thin 驱动是...
Oracle驱动jar包是Java应用程序与Oracle数据库进行交互的重要组件,主要用于实现JDBC(Java Database Connectivity)功能。在Java编程中,当需要连接并操作Oracle数据库时,就需要引入对应的Oracle JDBC驱动,也就是...
Oracle驱动包合集是一个集合了Oracle数据库不同版本的Java数据库连接器(JDBC)驱动程序,主要用于帮助Java应用程序与Oracle数据库进行通信。Oracle JDBC驱动分为几种类型,包括 Thin、 Thick、Native API 和 ...
接下来,我们将详细介绍几个关键版本的Oracle JDBC驱动,并解释它们之间的区别。 ### Oracle8i JDBC 8.1.7版本 - **classes111.zip**: 适用于JDK 1.1.x。 - **classes12.zip**: 适用于JDK 1.2.x。 这两个版本的...
Oracle驱动ojdbc678是Oracle数据库11g版本的Java数据库连接器(JDBC)驱动程序,它是Java应用程序与Oracle数据库之间通信的关键组件。Oracle JDBC驱动提供了多种类型的驱动,包括 Thin、OCI、JDBC-ODBC Bridge 和 ...
### 一、OCI与Thin驱动的区别 在Java连接Oracle数据库时,主要通过两种类型的驱动程序:OCI和Thin。OCI是Oracle提供的本地库接口,它提供了一种高效、低延迟的方式与Oracle数据库交互,特别适合于需要高性能的应用...
4. **Universal Driver**:Oracle Universal Driver是一种多协议驱动,可以支持JDBC-ODBC桥、thin驱动和共享库驱动。它使得开发者可以根据环境选择最适合的驱动方式。 压缩包中的文件名列表表明,它包含了不同版本...
Oracle驱动,全称为Oracle JDBC驱动,是Oracle公司提供的Java数据库连接(JDBC)驱动程序,使得Java应用程序能够与Oracle数据库进行交互。Oracle JDBC驱动提供了多种类型的驱动,包括 Thin、 Thick、Shared和OCI,每...
Oracle驱动包,通常指的是用于连接Java应用程序与Oracle数据库的Java档案(JAR)文件,它包含了Oracle JDBC驱动程序。Oracle JDBC驱动是Oracle公司为Java开发者提供的API,使得Java程序能够与Oracle数据库进行交互,...
Oracle驱动是Java应用程序连接Oracle数据库的关键组件,它遵循Java数据库连接(JDBC)规范,使得开发者可以使用标准的Java API来访问和操作Oracle数据库。Oracle提供了多种类型的驱动,包括JDBC Thin驱动、JDBC OCI...
4. ** OCI Driver**:或类型1驱动,依赖于本地Oracle客户端库,提供了更高级的功能,但需要在客户端安装Oracle客户端软件。 在Oracle12C 12.2.0.1版本中,`ojdbc8.jar` 文件包含了 Thin Driver,即类型4驱动。这个...
Oracle JDBC驱动主要分为两种:Oracle JDBC Thin驱动和Oracle JDBC OCI驱动。其中,OJDBC(Oracle JDBC Thin Driver)是Type 4驱动,无需Oracle客户端,轻量级且高效。而Oracle JDBC OCI驱动(Oracle Call Interface...
Java classes when using the JDBC Thin and OCI client-side driver - with Java 7.0 VM. ojdbc6.jar Java classes when using the JDBC Thin and OCI client-side driver - with Java 6.0 VM. ojdbc5.jar Java ...
- JDBC OCI Driver:Oracle Call Interface驱动,需要Oracle Client库,适用于需要本地接口功能的情况。 - JDBC JMS Driver:用于JMS(Java Message Service)的驱动。 - JDBC DataSource:使用Java Naming and ...
2. JDBC OCI Driver (oci.jar): 这种驱动需要Oracle的本地接口库(如libclntsh.so),因此它在运行时依赖于Oracle客户端安装。适用于本地高性能和低延迟的环境。 3. JDBC JServer Proxy Driver: 此驱动主要用于旧版...