3

私はこのコードを持っています:

con = new iDB2Connection(connectString);
try { con.Open(); }
catch (iDB2ConnectionTimeoutException ex)
{ Console.WriteLine(ex.Message); }
catch (iDB2DCFunctionErrorException ex)
{ Console.WriteLine(ex.Message); }
catch (AccessViolationException ex)
{ Console.WriteLine(ex.Message); }

接続を閉じる

if (con != null)
{
            try
            {
                Console.WriteLine("CRASH IS AFTER THIS");
                if (con.State != ConnectionState.Closed)
                {
                    con.Close();
                }
            }

            catch (iDB2ConnectionTimeoutException ex)
            {
                Console.WriteLine(ex.Message);
            }
            catch (iDB2DCFunctionErrorException ex)
            {
                Console.WriteLine(ex.Message);
            }
            catch (AccessViolationException ex)
            {
                Console.WriteLine(ex.Message);
            }
            catch (iDB2Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
            finally
            {

            }
        }

しかし、Close 接続が実行されているときに、まだこの厄介なメッセージが表示されます。

    Unhandled Exception: IBM.Data.DB2.iSeries.iDB2DCFunctionErrorException: An unexp
ected exception occurred.  Type: System.AccessViolationException, Message: Attem
pted to read or write protected memory. This is often an indication that other m
emory is corrupt.. ---> System.AccessViolationException: Attempted to read or wr
ite protected memory. This is often an indication that other memory is corrupt.
   at IBM.Data.DB2.iSeries.CwbDc.DcDnIsAlive(Int32 functionNumber, IntPtr connec
tionHandle, IntPtr nullParm)
   at IBM.Data.DB2.iSeries.MPConnection.IsAlive()
   --- End of inner exception stack trace ---
   at IBM.Data.DB2.iSeries.MPConnection.IsAlive()
   at IBM.Data.DB2.iSeries.MPConnectionManager.GetConnection(iDB2Connection piDB
2Connection)
   at IBM.Data.DB2.iSeries.iDB2Connection.Open()

これは、iSeries が保守のために停止していることを知っているときに発生します。
C# コンソール アプリケーションを続行するには、これをどのように処理すればよいですか?

4

1 に答える 1

0

それを Final ブロッ​​クに入れて、try/catch を 1 つだけ使用してみませんか?

con = new iDB2Connection(connectString);

try 
{ 
    con.Open(); 
}
catch (iDB2ConnectionTimeoutException ex)
{ 
    Console.WriteLine(ex.Message); 
}
catch (iDB2DCFunctionErrorException ex)
{ 
    Console.WriteLine(ex.Message); 
}
catch (AccessViolationException ex)
{ 
    Console.WriteLine(ex.Message);
} 
finally
{
    if (con != null && con.State == ConnectionState.Open)
            con.Close();
}
于 2013-09-18T15:40:48.990 に答える