• 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
  • 相关阅读:
    MongoDB 常用的基础命令
    window.crypto 生成随机数
    正则去除object中key的引号
    git 常用操作命令
    常用的用于操作 css 的方法
    angular ViewChild ContentChild 系列的查询参数
    angular 键盘事件绑定与过滤
    mysql性能优化(A)
    移动硬盘写保护处理
    expdp/impdp导入导出
  • 原文地址:https://www.cnblogs.com/freewater/p/2156497.html
Copyright © 2020-2023  润新知