oracle jdbc connection string URL

來源:互聯網
上載者:User

JDBC Driver Connection URL

This section describes the connection URL format and how to create connection objects with the DriverManager class.

If you want to use the DriverManager class to create connection objects, you need to know how to make a connection URL that provides access information to the Oracle server. The Oracle connection URL for the thin client-side driver ojdbc14.jar has the following format:

jdbc:oracle:thin:[user/password]@[host][:port]:SIDjdbc:oracle:thin:[user/password]@//[host][:port]/SID  user - The login user name defined in the Oracle server.  password - The password for the login user.  host - The host name where Oracle server is running.          Default is 127.0.0.1 - the IP address of localhost.  port - The port number where Oracle is listening for connection.         Default is 1521.  SID  - System ID of the Oracle server database instance.          SID is a required value. By default, Oracle Database 10g Express          Edition creates one database instance called XE.

Here are some example connection URLs:

jdbc:oracle:thin:Herong/TopSecret@localhost:1521:XEjdbc:oracle:thin:Herong/TopSecret@:1521:XEjdbc:oracle:thin:Herong/TopSecret@//localhost:1521/XEjdbc:oracle:thin:Herong/TopSecret@//:1521/XEjdbc:oracle:thin:Herong/TopSecret@//localhost/XEjdbc:oracle:thin:Herong/TopSecret@///XE

I wrote the following program to validate some of the connection URLs listed above:

/** * OracleConnectionUrl.java * Copyright (c) 2007 by Dr. Herong Yang. All rights reserved. */import java.sql.*;public class OracleConnectionUrl {  public static void main(String [] args) {    Connection con = null;    try {// Load the Oracle JDBC driver      Class.forName("oracle.jdbc.OracleDriver") ;      System.out.println("Oracle JDBC driver loaded ok.");      con = DriverManager.getConnection(        "jdbc:oracle:thin:Herong/TopSecret@localhost:1521:XE");      System.out.println("Connected with @localhost:1521:XE.");      con.close();      con = DriverManager.getConnection(        "jdbc:oracle:thin:Herong/TopSecret@:1521:XE");      System.out.println("Connected with @:1521:XE.");      con.close();      con = DriverManager.getConnection(        "jdbc:oracle:thin:Herong/TopSecret@//localhost:1521/XE");      System.out.println("Connected with @//localhost:1521/XE.");      con.close();      con = DriverManager.getConnection(        "jdbc:oracle:thin:Herong/TopSecret@//:1521/XE");      System.out.println("Connected with @//:1521/XE.");      con.close();      con = DriverManager.getConnection(        "jdbc:oracle:thin:Herong/TopSecret@//localhost/XE");      System.out.println("Connected with @//localhost/XE.");      con.close();      con = DriverManager.getConnection(        "jdbc:oracle:thin:Herong/TopSecret@///XE");      System.out.println("Connected with @///XE.");      con.close();      con = DriverManager.getConnection(        "jdbc:oracle:thin:Herong/TopSecret@//localhost:1521");      System.out.println("Connected with @//localhost:1521.");      con.close();    } catch (Exception e) {      System.err.println("Exception: "+e.getMessage());    }  }}

Here is the output:

C:\>javac OracleConnectionUrl.javaC:\>java -cp .;\local\lib\ojdbc14.jar OracleConnectionUrlOracle JDBC driver loaded ok.Connected with @localhost:1521:XE.Connected with @:1521:XE.Connected with @//localhost:1521/XE.Connected with @//:1521/XE.Connected with @//localhost/XE.Connected with @///XE.Exception: Listener refused the connection with the following error:ORA-12514, TNS:listener does not currently know of service requested in connectdescriptorThe Connection descriptor used by the client was://localhost:1521

The last URL test failed, because SID was not specified. The Oracle HTTP listener could not connect the request to a database service, the SID.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.