Two Primary Methods for Java Applications to Connect to Oracle Databases
There are two main approacehs for JDBC to connect to an Oracle database: 1. Using the Thin Driver The Thin driver is implemented entirely in Java and establishes a connection to the Oracle database using TCP/IP via Java Sockets. Thiss makes the Thin driver platform-independent. It does not require t...
