Answer Posted / manish t
the command in the above code uses cmd.executereader ()
which means an datareader object is returned as a result of
the execution .....which essentially means one datar reader
object getting assigned to another datareader object
dr = cmd.executereader
so it is simply assigning of objects and does not require
new keyword as the datareader inside the execute reader has
already allocated space and it is just assigning it to a
different object ...this is true with executedataset as
well ...remember the rule is that corret type should be
returned. it is same in case of any objects ..try creating
an object A with new keyword and another object B of same
type without new key word ...and then assign the A to B and
you will find that By ref all properties are avialable to b
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Explain About ado.net components/objects. Usage of data adapters and tell the steps to retrieve data.
how can implement dropdownlist in particular of dataset when try to update?
Which method is used by command class to execute SQL statements that return single value?
Explain what are the steps to connect to a database?
What is data relation in ado.net?
What are the advantages of ado.net?
Explain the advantage of ADO.Net?
What are disadvantages of microsoft-provided data provider classes in ado.net?
What are the important features of ado.net 2.0?
What is the use of adodc?
What is the full form of ado.net?
What is isolation?
What are the steps to connect to a database?
Which control of the BindingNavigator returns the current position within the data source?
What are the different ado.net namespaces?