2

コンポーネントのインストール パッケージを作成しています。前提条件の 1 つは、最小バージョン 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