.NET Data Access

G

Guest

I am developing a new product and would like to know the best method to use to access data. My goal is to design the interface so it will utilizes the newer versions of the microsoft tools that will be coming in the next few years
1. Should the access be through web services
2. Should I pass XML back and forth
3. What technology to utilize for data access e.g use XML schemas, update grams etc

Maybe someone can point me to an article that covers this subjects and explains the best approach

The application would be a medical billing product that would have local and remote stations

Thank yo
 
W

William Ryan [eMVP]

1) Depends on you apps needs but Web Services are well suited to this task
2) In most cases yes
3) ADO.NET, DataSet.WriteXML(Filename, Diffgram), DataSet.ReadXML(Filename)
George Grodentzik said:
I am developing a new product and would like to know the best method to
use to access data. My goal is to design the interface so it will utilizes
the newer versions of the microsoft tools that will be coming in the next
few years.
 
G

Guest

another good idea would be to write a data access later (DAL) and implement data types that derive from each specific interface of the System.Data class (IE, ICommand, IConnection, etc)...i doubt that MS will break implementation from this

jayson
 

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