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

What?s the difference between Response.Write() andResponse.Output.Write()?

2 Answers  


What is boxing and unboxing in asp.net?

0 Answers  


Define data caching?

0 Answers  


What is role-based security?

1 Answers  


What are the Types of session management in ASP.NET

0 Answers   Microsoft,






List the advantages and disadvantages of user control an custom control?

0 Answers  


what is wpf and wcf in .net explain with an example?

2 Answers  


What is xaml? Are xaml file compiled or built on runtime?

0 Answers  


In ViewState How much lifespan items stored?

0 Answers   Siebel,


Which browsers support the xmlhttprequest object?

0 Answers  


If cookies is disabled in client browser will session work ?

7 Answers   Satyam,


how to stop cookie in particular page using asp.net

2 Answers   CGI,


Categories