Skip to content

Commit 22648ea

Browse files
authored
Update Readme.md
1 parent c8e26c5 commit 22648ea

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

java/jdbc/Readme.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# JDBC based examples
2-
The Oracle JDBC driver is used for connecting and processing data in the Oracle Database. It is fully compliant with the latest JDBC specifications. The JDBC standard defines the `java.sql` interfaces.
2+
The Oracle JDBC drivers allow Java applications to connect and process data in the Oracle Database. These are fully compliant with the latest JDBC specifications which defines the standard `java.sql` interfaces.
33

4-
**The JDBC Thin driver or Type 4 driver** is a pure Java driver which communicates with the database server using Oracle Net Services. Oracle furnishes also the type 2 JDBc-OCI driver however, JDBC-Thin is the most used and recommended driver type. Java applications simply need to have **ojdbc8.jar** (for JDK8) in their classpath.
4+
**Type 4 and type 2 drivers** The Oracle database furnishes a type 4 driver a.k.a. JDBC-Thin and a type 2 driver a.k.a. JDBC-OCI however, JDBC-Thin is the most used and recommended driver type. Java applications simply need to have **ojdbc8.jar** (for JDK/JRE 8) in their classpath.
55

6-
The JDBC THin driver allows connecting to the Oracle Database Cloud Services including: the Oracle Database Service **(DBCS)**, the Oracle Exadata Express Cloud Service **(EECS)**, and the Oracle Database Service on Bare Metal **(BMCS)**.
7-
Please refer to [JDBC and Oracle Database Service on Cloud](http://www.oracle.com/technetwork/database/application-development/jdbc/documentation/index.html) for detailed instructions.
6+
**Cloud Database Services** The JDBC Thin driver allows connecting to the various Oracle Database Cloud Services including: the Oracle Database Service **(DBCS)**, the Oracle Exadata Express Cloud Service **(EECS)**, and the Oracle Database Service on Bare Metal **(BMCS)**. Please refer to [JDBC and Oracle Database Service on Cloud](http://www.oracle.com/technetwork/database/application-development/jdbc/documentation/index.html) for detailed instructions.
7+
8+
**Prerequisite - JDBC Tutorial** The examples in this folder assume a basic knowledge of JDBC [See the JDBC Java Tutorial]( https://docs.oracle.com/javase/tutorial/jdbc/index.html)
89

910
# What's New in JDBC in 12.2 ?
1011

0 commit comments

Comments
 (0)