Odbc连接错误

时间:2014-11-13 05:18:50

标签: oracle oracle11g odbc

我正在使用从64位Windows 2012服务器到位于另一个64位Windows 2012服务器的Oracle数据库的ODBC连接。

我收到此错误:

ERROR: Library 'ODBC' 'dbconnection' is not a valid physical location.
ERROR: SQL error return:   ERROR: Library 'ODBC' 'dbconne.
ERROR: SQL error return:   ERROR: Library 'ODBC' 'dbconne.
ERROR: Library 'ODBC' 'dbconnection' is not a valid physical location.
ERROR: SQL error return:   ERROR: Library 'ODBC' 'dbc.
ERROR: SQL error return:   ERROR: Library 'ODBC' 'dbc.
ERROR: Library 'ODBC' 'dbconnection' is not a valid physical location.
ERROR: SQL error return:   ERROR: Library 'ODBC' 'dbc.
ERROR: SQL error return:   ERROR: Library 'ODBC' 'dbc.
ERROR: Library 'ODBC' 'dbconnection' is not a valid physical location.
ERROR: SQL error return:   ERROR: Library 'ODBC' 'dbconne.
ERROR: SQL error return:   ERROR: Library 'ODBC' 'dbconne.

dbconnection 是ODBC连接的名称。

1 个答案:

答案 0 :(得分:0)

你安装了64位Oracle客户端吗?

您是否使用“Net Manager”配置了TNS?有“测试服务”按钮。它有效吗?

您是否使用odbcad32.exe配置了ODBC系统DSN连接?有“测试连接”按钮。

您的问题是没有代码且没有连接字符串。你得到的错误可能是因为连接字符串不正确。

pyodbc文档(https://code.google.com/p/pyodbc/wiki/GettingStarted)中的示例:

cnxn = pyodbc.connect('DRIVER={SQL Server};SERVER=localhost;DATABASE=testdb;UID=me;PWD=pass')

在配置DSN时更简单:

cnxn = pyodbc.connect('DSN=test;PWD=password')

您可以在http://www.connectionstrings.com/oracle-in-oraclient11g_home1/

找到特定于Oracle的连接字符串

但是如果您已经配置并测试了DSN,请尝试使用它:

DSN=dbconnection;UI=username;PWD=password