jdbc:oracle:thin:@localhost:1521:orcl和jdbc:oracle:thin:@localhost:1521/orcl的区别

 
Oracle Thin JDBC Driver

驱动程序包名:ojdbc14.jar、ojdbc6.jar

驱动程序类名: oracle.jdbc.driver.OracleDriver

JDBC URL:

1. ServiceName方式:
jdbc:oracle:thin:@//<host>:<port>/ServiceName

2. SID方式:
jdbc:oracle:thin:@<host>:<port>:<SID>

3.RAC方式(老的写法,现在一般用ServiceName方式)
jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=x.x.x.1)(PORT=1521))(ADDRESS=(PROTOCOL=TCP)(HOST=x.x.x.2)(PORT=1521)))(LOAD_BALANCE=yes)(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=xxrac)))

4. jdbc:oracle:oci:@service (这种一般没有人写吧)

posted on 2018-07-20 17:34  IT弄潮儿  阅读(589)  评论(0编辑  收藏  举报

导航