zoukankan      html  css  js  c++  java
  • OracleDatabase 配置

    tnsnames.ora
    ORCL=
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST =
    10.3.5.78 )(PORT = 1522))
    )
    (CONNECT_DATA =
    (SERVICE_NAME = orcl)
    )
    )

      法一:

     1 OracleDataSource ds = new OracleDataSource();
    2 ds.setDriverType("oci");
    3 ds.setNetworkProtocol("tcp");
    4 ds.setServerName("10.3.5.78");
    5 ds.setPortNumber(1522);
    6 ds.setDatabaseName("orcl");
    7 ds.setUser("scott");
    8 ds.setPassword("tiger");

      法二:

    OracleDataSource ds = new OracleDataSource();
    ds.setDriverType(
    "oci");
    ds.setTNSEntryName(
    "orcl");
    ds.setUser(
    "scott");
    ds.setPassword(
    "tiger");

      法三:

    OracleDataSource ds = new OracleDataSource();
    ds.setURL(
    "jdbc:oracle:oci:@orcl");
    ds.setUser(
    "scott");
    ds.setPassword(
    "tiger");

      If you are using the JDBC Thin or OCI driver, then note the following:

    ■A URL setting can include settings for user and password, as in the following example, in which case this takes precedence over individual user and password property settings:
    jdbc:oracle:thin:scott/tiger@localhost:1521:orcl
    ■Settings for user and password are required, either directly through the URL setting or through the getConnection call. The user and password settings in a getConnection call take precedence over any property settings.
    ■If the url property is set, then any tnsEntry, driverType, portNumber, networkProtocol, serverName, and databaseName property settings are
    ignored.
    ■If the tnsEntry property is set, which presumes the url property is not set, then any databaseName, serverName, portNumber, and networkProtocol settings are ignored.
    ■If you are using an OCI driver, which presumes the driverType property is set to oci, and the networkProtocol is set to ipc, then any other property settings are ignored.
    详细参见:Oracle Database JDBC Developer's Guide and References(11.2)  chapter 8.DataSource and URL
  • 相关阅读:
    手机端调用摄像头拍照
    判断浏览器是否支持css3属性或单位
    浏览器页面加载解析渲染机制(一)
    css默认值汇总
    分享几个高效编写JS 的心得
    说几个JS优化技巧吧
    yahoo的30条优化规则
    Jquery的$命名冲突
    C语言时间头文件
    C语言随机数的生成
  • 原文地址:https://www.cnblogs.com/freewater/p/2156497.html
Copyright © 2011-2022 走看看