G
Guest
Dear reader
I'm building a multi-user application in .NET and was wondering what benefits the dataset has (for my application).
(1). Database contains tables with 10.000 - 20.000 records. Do I have to use a dataset to fetch all the records from the database (and load it into the dataset (memory on client machine))? Isn't this memory consuming? I can't use the DataReader because the user can modify the data
(2). When the user for examples navigates to the next record the application needs to refresh the data (in case an other user changed the next record). This means that it has to refresh all the 10.000 - 20.000 records when the user navigates
Isn't this generating a lot of network traffic and performance?
Or does someone have a better idea
Thx
Mauric
I'm building a multi-user application in .NET and was wondering what benefits the dataset has (for my application).
(1). Database contains tables with 10.000 - 20.000 records. Do I have to use a dataset to fetch all the records from the database (and load it into the dataset (memory on client machine))? Isn't this memory consuming? I can't use the DataReader because the user can modify the data
(2). When the user for examples navigates to the next record the application needs to refresh the data (in case an other user changed the next record). This means that it has to refresh all the 10.000 - 20.000 records when the user navigates
Isn't this generating a lot of network traffic and performance?
Or does someone have a better idea
Thx
Mauric