C
Cip
Hi,
in a nutshell, is there a quick and efficient way of storing data from
a database on each user's machine so that a WinForm application can
query/analyze/do whatever it wishes to this local data?
the winform app will never need to interact with the original database
except the first time it is run - to create the local data files on
each user's computer. From then on, each time a user runs the
application, the app would be using the local data.
I thought of saving the data as XML files... but I am concerned about
efficiency. As well, I do not need the files to be viewed through
other mediums (web, excel, etc.).
Actually, I would prefer it if the local files are NOT viewable in
other mediums... only the WinForm application would use the files.
If I am able to query data in these local files using SQL (like
"select myCol From file1.dat") that would be also be a huge plus....
I also thought of loading a DataSet object then serializing it to a
file... any links/advice/help on this? I couldnt really find any
specific examples/white papers on serializing data, but I am still
looking.
Any other suggestions? Thank you.
in a nutshell, is there a quick and efficient way of storing data from
a database on each user's machine so that a WinForm application can
query/analyze/do whatever it wishes to this local data?
the winform app will never need to interact with the original database
except the first time it is run - to create the local data files on
each user's computer. From then on, each time a user runs the
application, the app would be using the local data.
I thought of saving the data as XML files... but I am concerned about
efficiency. As well, I do not need the files to be viewed through
other mediums (web, excel, etc.).
Actually, I would prefer it if the local files are NOT viewable in
other mediums... only the WinForm application would use the files.
If I am able to query data in these local files using SQL (like
"select myCol From file1.dat") that would be also be a huge plus....
I also thought of loading a DataSet object then serializing it to a
file... any links/advice/help on this? I couldnt really find any
specific examples/white papers on serializing data, but I am still
looking.
Any other suggestions? Thank you.