OCI 连接字符串...需要帮助
有谁知道 Oracle 10g C API 函数 OCILogon() 中用于 dbname 参数的 OCI 连接字符串吗?
我知道您可以为服务指定 tnsnames.ora 条目,但它是否能够接受类似以下内容: oci:connect:myserver.com:1521/myservicename ?
Does anyone know the OCI connection string used for the dbname parameter in the function OCILogon() for the oracle 10g C API ?
I know you can specify the tnsnames.ora entry for the service, but does it have the ability to take something like: oci:connect:myserver.com:1521/myservicename ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下格式作为 dbname:
[//]host[:port][/service name]
您可以在此处阅读有关主题的更多信息:
OCI Instant Client 的数据库连接字符串
You may use the following format for dbname:
[//]host[:port][/service name]
You can read more on subject here:
Database Connection Strings for OCI Instant Client
您可以按如下方式指定 dbname(不带 tnsnames.ora):
You may be able to specify dbname as follows (without tnsnames.ora):