FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

ADO.NET INTERVIEW QUESTION & ANSWERS

21. What is the difference between dataset clone and copy?
  Dataset Clone : It only copies structure does not copy data.
Dataset Copy : Copies both structure and data.
Your Name Your Email-ID
Your Answer
 
22. What two classes are used to open and connect to a database using ADO.NET?
  Use the sqlconnection and oleDbConnection classes to connect to a database using ADO.NET.
Your Name Your Email-ID
Your Answer
 
23. What is the use of Command builder?
  Command builder builds "parameter" objects automatically. Below is a simple code, which uses commands builder to load its parameter objects.
Your Name Your Email-ID
Your Answer
 
24. Name some ADO.NET Objects?
 
  • Connection Object
  • DataReader Object
  • Command Object
  • DataSet Object
  • DataAdapter Object
Your Name Your Email-ID
Your Answer
 
25. How can you populate one Dataset object with data from two different physical databases?
  Use two connection objects and two Adapter objects. Open a connection to both databases, and then fill the same Dataset with the two Adapters.
Your Name Your Email-ID
Your Answer