In SP has contains 10 query,By Using Dataset Object I need
to fetch 8th query of records? How?

Answers were Sorted based on User's Feedback



In SP has contains 10 query,By Using Dataset Object I need to fetch 8th query of records? How?..

Answer / sarvesh

the index starts from 0.
ds.tables[7]

Is This Answer Correct ?    9 Yes 0 No

In SP has contains 10 query,By Using Dataset Object I need to fetch 8th query of records? How?..

Answer / javed

DataSet ds = new DataSet();
DataTable dt = new DataTable();
dt=ds.Tables[7];

because index start 0.

Is This Answer Correct ?    8 Yes 0 No

In SP has contains 10 query,By Using Dataset Object I need to fetch 8th query of records? How?..

Answer / jignesh contractor

From SP we want the 8th query.....

so that we can be access by

DataSet ds = new DataSet();
DataTable dt = new DataTable();
dt = ds.Tables[8]; //As Index Starts from 0th Index....

Now dt will have the records returned by the 8th query..

Is This Answer Correct ?    0 Yes 4 No

In SP has contains 10 query,By Using Dataset Object I need to fetch 8th query of records? How?..

Answer / arun

I need some answers...

Is This Answer Correct ?    1 Yes 6 No

In SP has contains 10 query,By Using Dataset Object I need to fetch 8th query of records? How?..

Answer / devanathan

Get the DateSet Object's 8th table will give you the 8th
query records.

DataSet ds = new DataSet();
DataTable dt = new DataTable();
dt=ds.Tables[8];

Now dt will have the records returned by the 8th query

Is This Answer Correct ?    7 Yes 13 No

Post New Answer

More ASP.NET Interview Questions

How many ways are there to maintain a state in .net? What is view state?

0 Answers  


How does the service stream content?

0 Answers  


when we write the html code with runat = server it works like a server control than why we use the server control?

1 Answers  


What is Web Services?How we can consume a Web Services in our application?Explain.

1 Answers   Religare,


What events will occur when a page is loaded?

0 Answers  






What is the difference between web.config and machine.config in ASP.NET?

0 Answers   Amazon,


What is difference Between Authentication and authorization?

0 Answers   MCN Solutions,


Explain diff. Between friend and protected friend?

0 Answers  


Why do we need asp.net?

0 Answers  


Where would you use an ihttpmodule, and what are the limitations if any?

0 Answers  


Difference between windows application and web application? Which is the best for updation purpose?

5 Answers   IBS,


hi wrever i go thy r asking depth abt 3-tier architecture i.e, hw to deploy 3 layers into 3 servers i do nt have much idea on deployment. can any one send me the tips or code if u hav kindly mail me.

1 Answers   Wipro,


Categories