如何为ole-db检查oracle提供程序的版本。 OraOLEDB.Oracle提供者

时间:2019-01-23 12:10:43

标签: oracle oledb

如何检查ole-db的oracle provider的版本。 Windows 10和Windows 7上的OraOLEDB.Oracle提供程序?

1 个答案:

答案 0 :(得分:1)

您可以使用例如工具RegDllView。搜索“ OraOLEDB”,结果可能是这样的:

enter image description here

一种更简单的方法是导航到您的ORACE_HOME\bin目录并找到文件OraOLEDB??.dll。用鼠标右键单击->属性->详细信息检查版本。

但是,您仅获得文件的版本,并不一定意味着该DLL也已注册并可以使用。

或使用此VBScript:

Option Explicit
Const HKEY_CLASSES_ROOT = &H80000000

Dim Key, strComputer, objRegistry, strPath, arrKeys, fso
Dim strKeyPath, strValueName, strValue, uValue, ver

Set fso = CreateObject("Scripting.FileSystemObject")

strComputer = "."
Set objRegistry = GetObject("winmgmts:\\" & strComputer & "\root\default:StdRegProv")
objRegistry.enumKey HKEY_CLASSES_ROOT, "CLSID", arrKeys

For Each key In arrKeys
    strKeyPath = "CLSID\" & key
    strValueName = "OLEDB_SERVICES"
    If objRegistry.GetDWordValue (HKEY_CLASSES_ROOT, strKeyPath, strValueName, uValue) = 0 Then  
        'get the (Default) value which is the name of the provider
        objRegistry.GetStringValue HKEY_CLASSES_ROOT, strKeyPath, "", strValue
        If InStr(1, strValue, "OraOLEDB.Oracle", vbTextCompare) > 0 Then
            ' get expanded location
            objRegistry.GetStringValue HKEY_CLASSES_ROOT, strKeyPath & "\InprocServer32", "", strPath

            ver = fso.GetFileVersion(strPath)
            Wscript.Echo strValue & " @ " & strPath & " -> " & ver
        End If
    End If 
Next

OLE DB提供程序可能存在于32位或/和64位中,因此您可以执行两次脚本:

C:\Windows\System32\cscript.exe Print_OLE.vbs
C:\Windows\SysWOW64\cscript.exe Print_OLE.vbs