Quantcast
Channel: One stop place for c# ,.NET , SQL Server interview questions » C# interview questions
Viewing all articles
Browse latest Browse all 13

C# and ADO.NET Interview Questions :- Can you explain Connection, Command, Datareader and Dataset in ADO.NET ?

$
0
0
  • 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.

Also see the following C# and ADO.NET Training and interview questions video on Dataset connected while Datareader disconnected.


You can refer this comprehensive .NET interview question book  published by BPB publications.

In case you want 500 videos on .NET interview question this is a nice site to look in to.http://www.questpond.com/



Viewing all articles
Browse latest Browse all 13

Trending Articles