是否可以将包含SID的Oracle连接定义为单个参数?

时间:2014-06-23 09:19:47

标签: java connection-string

我已经使用以下格式的ServiceName编写了一个用于连接Oracle数据库的类。

connection = DriverManager.getConnection("jdbc:oracle:thin:username/password@//host:port/serviceName);

是否可以使用SID执行相同的操作? 我想要实现的是将getConnection方法中的以下3个连接参数转换为单个参数,如上面的代码。

connection = DriverManger.getConnection("jdbc:oracle:thin:@host:port:SID", username, password);

提前致谢:)

0 个答案:

没有答案