对于 Classic ASP 和 Oracle 10g,我使用什么连接字符串?

发布于 2024-11-03 16:36:50 字数 462 浏览 1 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

作业与我同在 2024-11-10 16:37:09

试试这个:

provider=OraOLEDB.Oracle

try this :

provider=OraOLEDB.Oracle

朦胧时间 2024-11-10 16:37:08

尝试使用以下无 DSN 连接字符串:

myConn.Open "Provider=MSDAORA;Data Source=instance_name;User ID=myOracleUsername;Password=myOraclePassword"

我已经在旧版本的 Oracle 客户端中使用了这个确切的连接字符串,但看不出它不适用于您的版本的任何原因。

Try using the following DSN-less connection string:

myConn.Open "Provider=MSDAORA;Data Source=instance_name;User ID=myOracleUsername;Password=myOraclePassword"

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文