Why Datareader is useful?

Answers were Sorted based on User's Feedback



Why Datareader is useful? ..

Answer / kamalakannan.a

Datareader is read only or forward only.So it is very fast
to fetch the data from database.

Is This Answer Correct ?    4 Yes 0 No

Why Datareader is useful? ..

Answer / manikandan

Data reader is usefull when we just want to acccess datas
from the database not when we want to perform DML
operations. and It is usefull when we want to perform
forward only reading of datas.It wont requires any
large volume of resources in the Front end.

Is This Answer Correct ?    4 Yes 1 No

Why Datareader is useful? ..

Answer / bhushanam

its connection oriented architecture.

Is This Answer Correct ?    3 Yes 0 No

Why Datareader is useful? ..

Answer / payal

1)it is used for forward record only.

2)we cannot update or save

3)speed is fast than dataset

4)not persist any record

5)it is usefual in case of display data according to
critiera on form using control like textbox,label etc.

who to use

in vb.net
dim sqlcmd as new sqlcmd("select ename from tblemp where
empid=5;
dim dr as new dataReader
dr=sqlcmd.executeReader()
if dr.hasRows then
txtbox1.text(dr("ename"))
end if

this display ename in textbox.

Is This Answer Correct ?    3 Yes 1 No

Why Datareader is useful? ..

Answer / anitha

Datareader is used to fetch the data frm data source

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More VB.NET Interview Questions

Described strong typing

0 Answers  


What is MSIL.

8 Answers   HDFC,


Is vb net a scripting language?

0 Answers  


Why should you use delegate?

0 Answers  


How to store images in sql server database through vb.net?

0 Answers  






sir i want to ask you that how can i fetch or get sql data into texboxes.where i want to show record in specific texboxes related to student information.when i click on button all data show on texboxes when i put id or name plz inform me on my id

1 Answers  


What is tracing?

0 Answers  


Write a program that accepts an array of numbers and a number, and return a string “Yes” if the number is found in the array, “No” if the number is not found in the array.

2 Answers  


Define cls?

0 Answers  


Explain how does the xmlserializer work?

0 Answers  


Explain the difference between c# and vb.net?

0 Answers  


Explain about garbage collection?

0 Answers  


Categories