FetCh Records No 5 to 10 From Dataset
Answers were Sorted based on User's Feedback
Answer / dinesh
Declaration : SqlDataAdapter da;
Instantiation : Dataset ds = new DataSet();
da.Fill(ds,StartingRecord,EndRecord,tablename);
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / deepak gupta
SqlDataAdapter.Fil;
(DataSet,StartingRecord,EndingRecord,tablename);
Is This Answer Correct ? | 4 Yes | 2 No |
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 |
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 |
What are the different execute methods of Ado.Net?
What do you mean by ‘batch updates’?
Why do we serialize data?
What are the Different layers in ADO.Net?
What is Serialization in .NET? what are the types of Serialization?
How will you differentiate between ADO (ActiveX Data Object) and RDO (Remote Data Objects)?
What is the executescalar method?
I want to ask u that if i add radio button in ado.net form,and how radion button data insert in SQL2005 Database...
How many major types of connection objects in ADO.NET?
What is ado.net full form?
What are the various methods provided by the DataSet object to generate XML?
Is it possible to edit data in Repeater control?