Can we bind one datareader wid two dropdown list?

Answers were Sorted based on User's Feedback



Can we bind one datareader wid two dropdown list? ..

Answer / pradip humane

Yes,we can bind the one datareader with two dropdownlist.
because datareader just read the data and forward the
data,that's why there is no problem for binding with two
dropdown list with one reader

Is This Answer Correct ?    16 Yes 4 No

Can we bind one datareader wid two dropdown list? ..

Answer / anup kumar

yes, it is posible. by using NextResult() method of
sqldatareader.

sqlcommand cmd = new sqlcommand("select id from emp ; select
dptid from dpt",YourConnection);
//check connection status and open the connection
if(rdr.hasrows)
{
//read id from emp
}
if (rdr.HasRows() == true)
{
//read dptid from dpt
}
//close the connection

Is This Answer Correct ?    3 Yes 1 No

Can we bind one datareader wid two dropdown list? ..

Answer / ak

It is simple


if(reader.hasrows)
{
combo1.additem(reader[0])
combo2.additem(reader[1])
}

Is This Answer Correct ?    2 Yes 2 No

Can we bind one datareader wid two dropdown list? ..

Answer / rmishra

We can bind the same Datareader to different drop downs but
the constraint is that it will show the same data for both
the dropdown ie if the datareader fetches the city data for
one dropdown then it will show the same data for second one

Is This Answer Correct ?    2 Yes 4 No

Can we bind one datareader wid two dropdown list? ..

Answer / vivek

data reader has no multiple binding because when it is
binded to multiple controls navigation problem
araises.because it is forward only.
so,multiple binding is perfectly possible with dataset only

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More ADO.NET Interview Questions

What is an ado?

0 Answers  


What is ado and rdo?

0 Answers  


Can we create Synonymns in MS Acess,My Sql Server,Sql Server? But iam we can create in oracle!

0 Answers  


Why ca not we use multiple inheritance and garbage collector paralelly in .net?

0 Answers  


Compare Data Reader & Dataset in ado.net?

0 Answers   MaxSolPro,


What is two way data binding android?

0 Answers  


What are the different methods by which we can populate a dataset?

0 Answers  


Explain the architecture of ado.net?

0 Answers  


What is the difference between an ADO.NET Dataset and an ADO Recordset?

0 Answers  


When we are running the Application, if any errors occur in the Stored Procedure then how will the server identify the errors?

5 Answers   HCL,


What is the difference in record set and dataset?

0 Answers  


What is isolation?

0 Answers  


Categories