Collecting database data ?

G

Guest

dear all,

I am building an application which is collecting data from a database and
display them in a windows form.

My idea is to collect those data in a form that, they can be read by my
windows application as well as a web browser.

is there a way to handle this data collection way available for both ?

thanks for reply
Serge
 
C

Chris, Master of All Things Insignificant

You can do this with some good planning from the start.

Make a class that stores the data and handles gathering the data and
processing of the data. Then compile this into its own dll (make the class
a class library project) Then you can reference this class from both the
web and windows. All the forms (web/win) should have to do is attach to the
data.

Hope this helps some.
Chris
 
G

Guest

Thanks for wyour reply,

But still one question, do I have to fomat those data in a particular form
or just having then in a dataset is enough?
I was thinking on exporting them to XML files but then formatting is needed
somhow ?

regards
Serge
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top