.Net Interview Questions and Answers

Search:

ADO.NET interview questions: - State the meaning of connection, command, datareader and dataset in ADO.NET?

By : Shiv Prasad Koirala | Sep 6th, 2011 | Views : 306 | Comments : 1 Bookmark and Share

ADO.NET interview questions: - State the meaning of  connection, command, datareader and dataset in ADO.NET?

Connection: - This object creates a connection to the database. If you want to do any operation on the database you have to first create a connection object.

Command: - This object helps us to execute SQL queries against database. Using command object we can execute select, insert, update and delete SQL command.

Data reader: - This provides a recordset which can be browsed only in forward direction. It can only be read but not updated. Data reader is good for large number of records where you want to just browse quickly and display it.

Dataset object: - This provides a recordset which can be read back and in forward direction. The recordset can also be updated. Dataset is like a in memory database with tables, rows and fields.

Data Adapter: - This object acts as a bridge between database and dataset; it helps to load the dataset object.
Know more on calling a stored procedure using LINQ by viewing the following video: -



Get more ADO.NET interview questions for preparation.

Regards,

Visit author’s other blogs on ADO.NET interview questions

 

 
Rate this Article :
1 Star
2 Stars
3 Stars
4 Stars
5 Stars
0 1 1 2 1
 
 
Comments
Posted By : Bhupendar Singh | 2011-11-18
I really enjoyed it watching. And it also cleared lot of my doubts about view state. Its really helpful for me thanks for sharing with us. Check this link too, its also having a nice collection of ADO.Net Interview Question and Answer. http://www.mindstick.com/Interviewer/QuestionPage.aspx?topicid=5&topic=ADO.Net

Write a Comment

All fields marked with * are mandatory

e01b2

 

 

ASP.NET interview questions: - Can you explain Method of Sorting GridViewcontrol in ASP.NET?

Sorting allow you to sort the GridViewcontrol data in Ascending or Descending order.... Read More

WCF Interview questions:- Which binding do we need to use for WCF REST?

In this article we will show Binding used for WCF REST. For more articles and videos visit us on www.questpond.com... Read More

.NET interview questions: - Can you elaborate project life cycle?

In this article we will explain about project life cycle. For more articles and videos visit us on http://www.questpond.com/... Read More

.NET interview questions: - How will you distinguish between ForeGround and BackGround Threading?

threading is a parallel processing unit and helps you to access multiple tasks at a one moment of time.... Read More

C# interview questions: - Explain anonymous methods in .NET?

n simple words Anonymous Methods means method which are coded inline or methods without method name.... Read More

ASP.NET interview questions: - Can you explain Method of Sorting GridViewcontrol in ASP.NET?

Sorting allow you to sort the GridViewcontrol data in Ascending or Descending order.... Read More

WCF Interview questions:- Which binding do we need to use for WCF REST?

In this article we will show Binding used for WCF REST. For more articles and videos visit us on www.questpond.com... Read More

.NET interview questions: - Can you elaborate project life cycle?

In this article we will explain about project life cycle. For more articles and videos visit us on http://www.questpond.com/... Read More

.NET interview questions: - How will you distinguish between ForeGround and BackGround Threading?

threading is a parallel processing unit and helps you to access multiple tasks at a one moment of time.... Read More

C# interview questions: - Explain anonymous methods in .NET?

n simple words Anonymous Methods means method which are coded inline or methods without method name.... Read More

Article Categories