-
Oracle pakuje Jar z instalacją klienta lub serwera Oracle i można go znaleźć w
$ORACLE_HOME/jdbc/lib/ojdbc6.jar
. Zawsze używam tego. -
Nazwa klasy sterownika to
oracle.jdbc.OracleDriver
a adres URL tojdbc:oracle:thin:@//[HOST][:PORT]/SERVICE
.
Oto przykład (zaczerpnięty stąd):
import java.sql.*;
class Conn {
public static void main (String[] args) throws Exception
{
Class.forName ("oracle.jdbc.OracleDriver");
Connection conn = DriverManager.getConnection
("jdbc:oracle:thin:@//localhost:1521/orcl", "scott", "tiger");
// @//machineName:port/SID, userid, password
try {
Statement stmt = conn.createStatement();
try {
ResultSet rset = stmt.executeQuery("select BANNER from SYS.V_$VERSION");
try {
while (rset.next())
System.out.println (rset.getString(1)); // Print col 1
}
finally {
try { rset.close(); } catch (Exception ignore) {}
}
}
finally {
try { stmt.close(); } catch (Exception ignore) {}
}
}
finally {
try { conn.close(); } catch (Exception ignore) {}
}
}
}