what is the use of untyped data set ?

Answer Posted / rahul bhatnagar

UnType Dataset
You will get type mismatch and other errors at compile time.


Type Dataset
You will get type mismatch and other errors at runtime.

Example :

string custid;
custid=dsetcust.customer(0).customerid;


untyped dataset
string custid;
custid=Convert.toString(dsetcust.customer(0).customerid);

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Name some asp objects?

763


What is a session in asp.net?

751


What is ashx file in asp.net?

751


What are the options in ASP.NET to maintain state?

828


How to retrieve user name in case of Window Authentication?

494


When maintaining session through sql server, what is the impact of read and write operation on session objects?

769


What is event in asp.net?

746


Describe how ASP.NET maintains process isolation for each Web application?

812


How do I upload a file from my ASP.NET page?

777


How is a session stored and maintained in asp.net?

731


Explain the main differences between asp and asp.net?

730


What are different methods of session maintenance in asp.net?

777


What is .net remoting?

812


What is use of Master Page in ASP.NET web pages?

813


Which library is used by the testers and developers to develop automated tests and create testing tools?

756