如何使用system.data.oracleclient为oracle创建一个连接字符串,其中包括主机名、实例名称、用户ID、密码?
我在 Oracle 中创建了一个连接字符串,如下所示:
Data Source=hostname;Initial Catalog=IMPORT_UTILITY;User ID=abc;password=123
我想为 Oracle 创建相同的连接字符串。我正在使用ODBC。
谁能告诉我相当于上面使用 odbc 的 sql 连接字符串的 oracle 连接字符串是什么?
I have made a connection string in oracle like:
Data Source=hostname;Initial Catalog=IMPORT_UTILITY;User ID=abc;password=123
I want to make the same for oracle. I am using ODBC.
can anyone tell me what will be the connection string for oracle that will be equivalent to above sql connection string using odbc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 Oracle 12c R2 和 Instant Client ODBC 驱动程序(版本 12.2.0.1.0),以下连接字符串应该可以工作,而无需创建 DSN 和/或 tnsnames.ora 文件:
Oracle 12c R2 docker 映像的示例 ODBC 连接字符串:
For Oracle 12c R2 and the Instant Client ODBC Driver (version 12.2.0.1.0) the following connection string should work without having to create a DSN and/or a tnsnames.ora file:
Example ODBC connection string for the Oracle 12c R2 docker image: