Java Programming with Oracle JDBC
Learn how to leverage JDBC, a key Java technology used to access relational data from Java programs, in an Oracle environment.
establishing database connections, and how to issue SQL queries
and get results back. You'll move on to advanced topics such as
streaming large objects, calling PL/SQL procedures, and working
with Oracle9i's object-oriented features, then finish with a look at
transactions, concurrency management, and performance.
In order to connect a Java application to a database using JDBC, you need to use a JDBC driver.
This driver acts as an intermediary between your application and the database. There are actually
several types of JDBC drivers available, so you need to choose the one that best suits your
particular circumstances. You also need to be aware that not all driver types are supported by
Oracle, and even when a driver type is supported by Oracle, it may not be supported by all
versions of Oracle.
Source: ricin.lfsnal.org
Related PDF Files
- Invoking Oracle Applications Api Through The Oracle As Adapter
- Oracle Bpel Process Manager 10.1.2.0.x Quick Start Tutorial
- Oracle Reports Tutorial
- Oracle/sql Tutorial
- Oracle Forms 10g : Demos, Tips And Techniques
- Oracle Bpel Process Manager Order Booking Tutorial
- Top Tips For Oracle Designer 6.0
- Tutorial: Oracle Bam Plans To Collect Data From Jms Bus
- Oracle Application Server Discoverer Plus Tutorial 10 G (9.0.4)
- Oracle Webdb Tutorial Guide

Topic: