How can I retrieve two tables of data at a time by using data reader? Data reader read and forward only, how is it possible to get 2 tables of data at a time?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More ADO.NET Interview Questions

If a table contains 20000 records . In a page at each time 100 records to be displayed. What are the steps u will take to improve performance? will you use dataset or datareader?

7 Answers  


What is the provider and namespaces being used to access oracle database?

4 Answers   Microsoft,


What is method to get XML and schema from Dataset? getXML() and get Schema ()

0 Answers  


What are the ado.net components?

0 Answers  


can we execute trigger normally at the desired time?

3 Answers   Microsoft,






What is ado.net full form?

0 Answers  


What is ole word?

0 Answers  


How to store data in memory?

0 Answers  


What are the rules to implement connection pooling?

0 Answers  


What is dataadapter in ado.net?

0 Answers  


How do you update database through dataset?

0 Answers  


OleDbDataAdapter ole=new OleDbDataAdapter(new OleDbCommand ("select * from login",oleDbConnection1)); OleDbCommandBuilder cmd=new OleDbCommandBuilder(ole); ole.Fill(dataSet11,"login"); DataRow drow=dataSet11.Tables ["login"].NewRow(); drow[0]=textBox1.Text; drow[1]=textBox2.Text; drow[2]=textBox3.Text; dataSet11.Tables["login"].Rows.Add (drow); ole.UpdateCommand=cmd.GetUpdateCommand(); ole.Update(dataSet11,"login"); MessageBox.Show("one row added"); this gives exception.how to solve it

1 Answers   Nimaya,


Categories