Databases Reference
In-Depth Information
{
Console.WriteLine(errorException.Message);
}
}
catch(AdomdUnknownResponseException ex)
{
Console.WriteLine(ex.Message);
}
catch(AdomdCacheExpiredException cacheExeption)
{
Console.WriteLine(cacheExeption.Message);
//refresh the controls
//...
}
finally
{
//Close the connection
if ( con.State == ConnectionState.Open )
con.Close();
}
}
Search WWH ::




Custom Search