2

我正在为我们的组件创建安装包。先决条件之一是目标机器上应安装最低版本 8i 的 oracle 客户端。我怎样才能做到这一点?

我在下面提到了帖子

确定我正在运行的 Oracle 客户端版本的最佳方法是什么?

有了这个,我写了下面的动作。我尝试使用 tnsping 实用程序进行检查。

string result = string.Empty;
                System.Diagnostics.ProcessStartInfo proces = new System.Diagnostics.ProcessStartInfo("tnsping.exe");
                proces.RedirectStandardOutput = true;
                proces.CreateNoWindow = true;
                proces.UseShellExecute = false;
                System.Diagnostics.Process bufor;
                bufor = System.Diagnostics.Process.Start(proces);
                System.IO.StreamReader Output = bufor.StandardOutput;
                bufor.WaitForExit(2000);
                if (bufor.HasExited)
                {
                    result = Output.ReadToEnd();
                    result = result.ToLower();
                    if (result.Contains("64-bit"))
                    {
                        is64BitOracleClient = true;
                    }

                    int verINT = result.IndexOf("version", 0, result.Length);
                    if (verINT != null)
                    {
                        version = result.Substring(verINT + "version".Length + 1, 8);
                        Version installedVersion = new Version(version);
                        Version expectedVersion = new Version("8.1.7.0");
                        if (installedVersion >= expectedVersion)
                        {
                            isVersionMatched = true;
                        }
                    }
                }

在这里我正在执行工具 tnsping。如果我收到异常

bufor = System.Diagnostics.Process.Start(proces);

我的结论是没有安装Oracle Client。

如果此工具可用,我将得到以下结果

TNS Ping Utility for 64-bit Windows: Version 11.2.0.1.0 - Production on 16-AUG-2
012 06:27:58

根据这个结果,我正在解析版本并验证它。

这是正确的方法吗?还有其他更好的方法吗?

4

1 回答 1

0

我没有更好的答案给你,但我在我的应用程序中使用了你的解决方案,它按预期工作。

于 2013-05-24T15:41:15.500 回答