对于 Classic ASP 和 Oracle 10g,我使用什么连接字符串?
我有 Oracle 10g 并通过即时客户端安装了 ODBC。我能够使用 ODBC 管理员并设置 DSN 并成功测试,每当我使用 Microsoft Access 时,我都可以毫无问题地连接到我的数据库。我还可以使用 Visual Web Developer 来遍历数据。
但是,当我尝试使用经典 ASP 时:
myConn.Open "DSN=oracle10g;" & _ “Uid=myOracle用户名;” & “Pwd=myOraclePassword”
我得到:
-2147467259由于系统错误5(instantclient10_2中的Oracle),无法加载指定的驱动程序。 尝试创建服务器对象时发生错误。
我搜索了很多地方,但似乎没有任何效果。所有 ORACLE_HOME、TNSnames、IUSR_X 安全,全部正确。我认为这是 DSN 连接字符串问题。
有人知道吗?
I have Oracle 10g and have installed ODBC via the instant client. I am able to use the ODBC administrator and set up a DSN and test successfully, and whenever I use Microsoft Access I can connect to my database no problem. I can also use Visual Web Developer to traverse the data.
But, when I try and use Classic ASP with:
myConn.Open "DSN=oracle10g;" & _
"Uid=myOracleUsername;" & "Pwd=myOraclePassword"
I get:
-2147467259Specified driver could not be loaded due to system error 5 (Oracle in instantclient10_2).
An error occurred while trying to create Server Object.
I have searched various places but nothing seems to work. All ORACLE_HOME, TNSnames, IUSR_X security, all is correct. I am thinking it is a DSN connection string problem.
Anyone know?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
provider=OraOLEDB.Oracle
try this :
provider=OraOLEDB.Oracle
尝试使用以下无 DSN 连接字符串:
我已经在旧版本的 Oracle 客户端中使用了这个确切的连接字符串,但看不出它不适用于您的版本的任何原因。
Try using the following DSN-less connection string:
I've used this exact connection string for older version of Oracle client, but can't see any reason why it won't work for your version as well.