Answer Posted / pavan
Yes. Multiple catch blocks may be put in a try block. See
code example below, to see multiple catch blocks being used
in C#.
class ClassA
{
public static void Main()
{
int y = 0;
try
{
val = 100/y;
Console.WriteLine("Line not executed");
}
catch(DivideByZeroException ex)
{
Console.WriteLine("DivideByZeroException" );
}
catch(Exception ex)
{
Console.WritLine("Some Exception" );
}
finally
{
Console.WriteLine("This Finally Line gets executed always");
}
Console.WriteLine("Result is {0}",val);
}
}
Read more:
http://discuss.itacumens.com/index.php?topic=17579.0#ixzz12vqW9paZ
... · ADO works with connected data. This
means ...
... when you access data, such as viewing and updating
data, it is real-time, with a ...
... being used all the time.
ADO.NET supports disconnected architecture. ...
... you access data, ADO.NET makes a copy of the data using
XML. ...
... make any requested updates. This makes ADO.NET
efficient to use for Web ...
... .
· ADO has one main object that is used to ...
... to create a new set of records. With ADO.NET, you have
various objects that ...
... relational model of your database.
· ADO allows you to create client-side ...
... only, whereas ADO.NET gives you the choice of using ...
... -side or server-side cursors. Whereas ADO allows you to
persist records in XML ...
... , ADO.NET allows you to manipulate data using. ...
Read more:
http://discuss.itacumens.com/index.php?action=search2#ixzz12w06GrN6
The DataAdapter object
plays the middleman between DataSet and database.
The DataSet represents a rich subset of the entire database,
cached on your machine without a continuous connection to
the database. The DataSet is comrised of DataTable objects
as well as Datarelation objects.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What’s difference between “optimistic” and “pessimistic” locking?
What are the different kinds of assemblies?
What is the difference between a default skin and a named skin?
What is the differences between a primary key and a unique key in sql server?
How do I open an ashx file?
Why SessionID changes in every request in asp.net?
What are strong names?
calling result set one procedure to anothar procedure in sql2000
Does asp.net still recognize the global.asa file?
Where the assembly is stored in asp.net?
What is difference cookie and session?
What is smpte vc-1?
What is the difference between mvc and asp.net? : Asp.Net MVC
How do you do client-side validation in .net? How to disable validator control by client side javascript?
How can you apply a theme to your asp.net application?