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 |
How to override a function in c#?
Is c# front end or back end?
How you will create satellite assemblies?
How do you remove white spaces from a string?
Is there any way to access private memebers of an object from another object?
I created a class which is inherited from interface IDisposable. Now if I use object of this class with using keyword. Then How the dispose method will get call. Does garbage collector call it or some else.
Explain when should you call the garbage collector in .net?
What is the difference between internal and protected in c#?
How does split work in c#?
How?s the DLL Hell problem solved in .NET?
Can interface have virtual methods in c#?
List out the differences between array and arraylist in 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)