Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What?s the role of the DataReader class in ADO.NET connections?

Answers were Sorted based on User's Feedback



What?s the role of the DataReader class in ADO.NET connections?..

Answer / ajay singh negi

DataReader object is a simply used to read data from the
result sets and because of this feature we call this object
as forward only or read only cursor. It requires a live
connection with the data source. Threw looping you can
efficiently access all or a part of data from the result
set. Note you cannot directly initialize a DataReader
object. Execute reader method of the command object is used
to obtain a valid DataReader object. After using DataReader
you need to close the connection otherwise it is stayed
alive and it is explicitly closed.

Is This Answer Correct ?    6 Yes 0 No

What?s the role of the DataReader class in ADO.NET connections?..

Answer / guest

returns a read-only dataset from the data source when the
command is executed.

Is This Answer Correct ?    8 Yes 3 No

What?s the role of the DataReader class in ADO.NET connections?..

Answer / satyambabu

the data reader on the other hand is directly connected to
the database management syatem .it is passess the all
quries to database managemant system,which execute them and
returns the result back to the application.
datareader no maintain the buffer
it is used to small number of operations

Is This Answer Correct ?    5 Yes 1 No

What?s the role of the DataReader class in ADO.NET connections?..

Answer / senthil kumar

DataReader has play vital role in ADO.NET when retrieve the
dataset.Its forward and read only optiion.They are not have
the pointer.It can only move the record with value
pointer.It is effiecnt data retrieval mechnism in ADO.Net.

Is This Answer Correct ?    5 Yes 1 No

What?s the role of the DataReader class in ADO.NET connections?..

Answer / kamal

This is used to retrieve data from a data source in read-
only and forward-only mode

Is This Answer Correct ?    3 Yes 1 No

What?s the role of the DataReader class in ADO.NET connections?..

Answer / santosh

Data reader is belongs to connecting architectutre.It read
the the data in forward direction.It retrive data from
database through sqlcommand.It is faster as comapre to data
Adupter in disconnecting architecture.

Is This Answer Correct ?    2 Yes 3 No

What?s the role of the DataReader class in ADO.NET connections?..

Answer / ilayaraja

it is used to retrieve the records in forward only
manner.it is always connected with data source. also fast
retrieval of records when compared to other (dataset..).

Is This Answer Correct ?    3 Yes 5 No

Post New Answer

More ADO.NET Interview Questions

Explain the difference between sqlcommand object and command behavior object?

0 Answers  


What is the difference between connected environment and a disconnected environment?

2 Answers  


How will you differentiate between ADO (ActiveX Data Object) and RDO (Remote Data Objects)?

0 Answers   CGI,


How can we serialize the dataset object?

0 Answers  


Which keyword is used to accept variable number of parameters?

0 Answers  


make a login control??

1 Answers  


How To Update A Column In A DataGrid Using C#.NET? I am getting InvalidCastException as (Specified cast is not valid) while updating 2nd column in a datagrid? Id,firstname,lastname are the three columns of my datagrid respectively. I wanted to edit the second column(lastname) and update it. I did the following code in DataGrid's updatecommand(),but failed to update ! Int varid=(int)DataGrid1.DataKeys[e.Item.ItemIndex]; TextBox lnm=(TextBox)e.Item.Cells[2].Controls[0]; string str=lnm.Text ; SqlCommand cmd=new SqlCommand("update customer set lastname='" + str + "' where id=" + varid + "",con); cmd.ExecuteNonQuery(); DataGrid1.EditItemIndex=- 1; DataGrid1.DataBind();

2 Answers   Mind Tree, TCS,


What are the parameters that control most of connection pooling behaviors?

0 Answers  


What is ado.net objects?

0 Answers  


What is ado.net and its architecture?

0 Answers  


What is ado.net connection?

0 Answers  


How to creating a SqlCommand Object?

0 Answers   Arigo Infotech,


Categories