What is ojdbc6.jar file?

15,112

Simply stated, a JDBC driver is a suite of classes that map the functionality required by the JDBC API onto the functionality provided by a specific kind of database.

Each database uses a different "wire protocol" to communicate between code running in a database client and the database server. JDBC "abstracts that away" so that a Java program can talk to any vendor's database (more or less1). The JDBC driver is the "glue" that makes the abstraction work.

In the Oracle case, there are multiple JDBC drivers, for various purposes including

  • Thin drivers versus OCI or server-native drivers (OCI & server-native drivers depend on platform specific native libraries)
  • Client-side versus server-side drivers (server-side libraries are optimized for cases where the client code is running on the database server machine ... for example.)
  • Drivers for different versions of Java; e.g. supporting different JDBC conformance levels.

The "ojdbc6.jar" file constitutes the Oracle thin client-side JDBC driver which is compatible with Java 6 (JDBC level 4.0).

For more information, read the Oracle JDBC FAQ.


1 - There are a couple of issues that make cross-database compatibility difficulty. Firstly, different databases support different dialects of SQL and provide different sets of SQL data types. Secondly, certain database vendors (including Oracle, before they bought Sun) have implemented non-standard extensions to JDBC.

Share:
15,112
matip
Author by

matip

Updated on June 04, 2022

Comments

  • matip
    matip almost 2 years

    For school project I had to make program in Java that uses data base and to do so I had to import to that project file ojdbc6.jar. I know that without it I couldn't use data bases but I don't really know what is this file. Could someone explain? How such file is called and what exactly is its purpose?

    • sstan
      sstan almost 9 years
      It's an Oracle database jdbc driver. But if you google it, you will find out pretty quickly :)