G
Guest
Hi,
I would appreciate your opinion on the following issue. Suppose there is a
windows (not web!) application that uses the data stored on an SQL server.
There can be more than one concurrent user of the app, so the concurrent
database update is an issue. There are also plenty of forms that when
displayed have some or all controls pre-filled with data, which is stored in
a number of different tables in the database. Question: what approach is
better in this case - preload the data and store it in a dataset and only
actually connect to the DB at the initial load and when insert/update is
required or load the data for each user request and not maintain any cache.
The number of records in question will be in hundreds rather than thousands
and the app is designed to run on WinXP.
I would appreciate your opinion on the following issue. Suppose there is a
windows (not web!) application that uses the data stored on an SQL server.
There can be more than one concurrent user of the app, so the concurrent
database update is an issue. There are also plenty of forms that when
displayed have some or all controls pre-filled with data, which is stored in
a number of different tables in the database. Question: what approach is
better in this case - preload the data and store it in a dataset and only
actually connect to the DB at the initial load and when insert/update is
required or load the data for each user request and not maintain any cache.
The number of records in question will be in hundreds rather than thousands
and the app is designed to run on WinXP.