zoukankan      html  css  js  c++  java
  • oracle jdbc connection string URL

    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]:SID
    jdbc: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:XE
    jdbc:oracle:thin:Herong/TopSecret@:1521:XE
    
    jdbc:oracle:thin:Herong/TopSecret@//localhost:1521/XE
    jdbc:oracle:thin:Herong/TopSecret@//:1521/XE
    jdbc:oracle:thin:Herong/TopSecret@//localhost/XE
    jdbc: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.java
    
    C:\>java -cp .;\local\lib\ojdbc14.jar OracleConnectionUrl
    
    Oracle 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 connect
    descriptor
    The 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.

  • 相关阅读:
    15个新鲜出炉的 Photoshop 文本效果教程
    10个美丽的例子,插图在网页设计中的应用
    分享8个非常时髦的翻页特效(附代码片段)
    【Vue课堂】Vue.js 父子组件之间通信的十种方式
    Tippy.js – 轻量的 Javascript Tooltip 工具库
    12个美丽的网站与受到日出启发的配色方案
    精选:3个可以下载免费的高质量照片的网站
    nativefier
    Mark Text
    Puppeteer
  • 原文地址:https://www.cnblogs.com/wucg/p/2259635.html
Copyright © 2011-2022 走看看