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
  • 相关阅读:
    DM8168通过GPMC接口与FPGA高速数据通信实现
    2016年 我在浙大计算机学院在职研究生学习经历
    CCS Font 知识整理总结
    Hexo 博客部署到 GitHub
    树莓派配置 USB 无线网卡
    树莓派搭建 Hexo 博客(二)
    树莓派搭建 Hexo 博客(一)
    树莓派初次使用的基本配置.md
    语法测试cnblogs使用Markdown
    硬件工程师-面试笔记0305
  • 原文地址:https://www.cnblogs.com/freewater/p/2156497.html
Copyright © 2011-2022 走看看