2
Reply

C# interview questions :- In ADO.NET What is connection, command, datareader and dataset object ?

Shivprasad Koirala

Shivprasad Koirala

Mar 08, 2011
11.3k
0

    TPL Dataflow (TDF) is a new .NET library for building concurrent applications. It promotes actor/agent-oriented designs through primitives for in-process message passing, dataflow, and pipelining. TDF builds upon the APIs and scheduling infrastructure provided by the Task Parallel Library (TPL) in .NET 4, and integrates with the language support for asynchrony provided by C#, Visual Basic, and F#.

    Dilip Patel
    May 06, 2011
    0

    Answer:
     

    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.

    See my  21 important .NET interview question and answers

    Shivprasad Koirala
    March 08, 2011
    0