如何检查Oracle客户端安装或不作为组件制作安装的先决条件(How to check Oracle

2019-09-21 07:00发布

我为我们的组件创建安装包。 其中镨必要条件是最低版本的Oracle 8i的客户应安装在目标机器。 我怎样才能做到这一点?

我称之为后下

什么是确定我运行的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客户端没有安装。

如果该工具可用,我得到下面的结果

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

从这个结果,我解析版本和验证相同。

这是正确的做法? 任何其他更好的办法是在那里?

Answer 1:

我没有给你一个更好的答案,但我用我的应用解决方案,它是按预期工作。



文章来源: How to check Oracle Client installed or not as prerequisite for component installtion