FetCh Records No 5 to 10 From Dataset

Answers were Sorted based on User's Feedback



FetCh Records No 5 to 10 From Dataset..

Answer / dinesh

Declaration : SqlDataAdapter da;
Instantiation : Dataset ds = new DataSet();
da.Fill(ds,StartingRecord,EndRecord,tablename);

Is This Answer Correct ?    7 Yes 0 No

FetCh Records No 5 to 10 From Dataset..

Answer / deepak gupta

SqlDataAdapter.Fil;
(DataSet,StartingRecord,EndingRecord,tablename);

Is This Answer Correct ?    4 Yes 2 No

FetCh Records No 5 to 10 From Dataset..

Answer / rajeshwari

SqlDataAdapter.Fil;
(DataSet,StartingRecord,maxrecords,tablename);

maxrecords means how many records from starting record.
OleDbDataAdapter1.Fill(DataSet1, 3, 5, "authors")
means from 5 records from 3(4,5,6,7,8 records will be
fetched)

Is This Answer Correct ?    2 Yes 0 No

FetCh Records No 5 to 10 From Dataset..

Answer / tiger skumar

DataSet supports to recieve the specfic row with the
starting rows and ending rows.

SqlDataAdapter.Fil;(DataSet,"Sample",StartingRecord,EndingRecord);

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More ADO.NET Interview Questions

What does executenonquery () method return?

0 Answers  


Describe briefly an ADO.NET Dataset ?

0 Answers   Siebel,


Some important instruction regarding ADO.NET connection string ?

0 Answers   NA,


What is dataset and tell about its features. What are equivalent methods of previous, next etc. Of ADO in ADO.NET ?

1 Answers   Digital GlobalSoft,


What are the data access namespaces in .NET?

0 Answers  






What are typed and untyped dataset?

0 Answers  


How to sort the data in Datatable

2 Answers   NetProphet,


What is a control toolbox?

0 Answers  


How do you connect to sql server database without using sqlclient?

0 Answers  


describe the dataset object in ado.net.

0 Answers  


What is an ADO.Net?

0 Answers  


What is disconnected architecture in ado.net?

0 Answers  


Categories