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
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 |
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 |
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 |
Why we use dbms for projects? Why don’t we save any application data in separate files instead of dbms?
What is viewstate information stored?
What is Difference between Application object and Session Object
Define a web service in .net?
What is a proxy in web service?
Explain about solution explorer window?
How do u deploy ur project?
How to disable validator control by client side JavaScript?
What is HTTP MODULE & HTTP HANDLERS in ASP.NET? How a developer can utilize in the application? Please provide example.
what is difference between java and .net
11 Answers Base2 Infotech, Karur Vysya Bank KVB, TATA AIG, TCC,
What is a web api? Which protocol is used in a web api?
what is the generics and where used generics in your project?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)