In c#.Net Application For DataGridview binding which method is faster in below two case?Why..?
1)looping-Using For loop
2)Databinding direct using Dataset
Answers were Sorted based on User's Feedback
Answer / velmahesh
Answer is , Databinding direct using Dataset..
Reason for if we store database values to dataset. then
values are binding shortly..
but, if use the for loop, that statement will execute
upto limit. so, it will take some seconds..
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / shir
Using for loop is faster since the data will be populated as
soon as it is read using the data reader which is one way
read only process.
But when data set is used,
1. It internally makes use of the data reader in order to
populate the data set.
2. It takes huge amount of data enire amount of which might
not be required.
3. Later we will have to iterate throught DS to fill the
data grid
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / hardit
if we are using " reader " in data retrieving ,it will be faster as it will only read values required.
but in the case of dataset which is a very heavy object it will take more time corresponding to reader in for loop.
| Is This Answer Correct ? | 0 Yes | 4 No |
What is the Difference between class and abstract class?
What is extension method in c# and how to use them?
Which operator cannot be overloaded in c sharp?
What is datatable in c#?
What is main thread in c#?
What?s the implicit name of the parameter that gets passed into the class? set method?
Why do we need interfaces?
One start and stop button is there and one textbox is there.when you click start button ,it will display 1,2,3......up to infinite in textbox.when you click stop button it will stop.
what are ways to debug the code step by step except using breakpoints?
What is array c#?
About Virtual functions and their use ?
Is hashset serializable c#?
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)