随着我在asp.net应用程序中收到这个臭名昭著的错误“该提供程序与Oracle客户端的版本不兼容”,我试图安装与团队使用的相同的ODAC版本:ODAC 11.2.0.4。 0。
因此,我下载了它并将其提取到以下位置:
C:\ Users \ user0792 \ Downloads \ ODAC112040Xcopy_64bit
自述文件与此处的自述文件相同:https://www.oracle.com/technetwork/database/windows/odac-11-155128.html
其中说:
install.bat all c:\oracle odac
Each product can be also be installed and configured individually. As an example, executing the following will install only ODP.NET 2:
install.bat odp.net2 c:\oracle odac
where "c:\oracle", for example, is your installation directory and "odac" is the Oracle Home Name that is used for the registry keys. In this example, the registry entries for this install is created under HKLM\Software\Oracle\KEY_odac. Note that ODP.NET registry entries are simply created under HKLM\Software\Oracle\ODP.NET\, and not under HKLM\Software\Oracle\KEY_. If multiple products are installed to the same destination directory, make sure that the Oracle Home Name that is specified as an argument to install.bat is the same for all those products.
是否暗示无论我的oracle客户端安装在哪里,都可以将ODAC安装到c:\ oracle?如果有关系,我的oracle客户端安装在C:\oracle\Client64\product\11.2.0\client_1
我是否应该仅按照说明并发出install.bat all c:\oracle odac
来安装所有程序?
谢谢。