My own Data Provider

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, how can I make my own Data Provider for CF? It's the same as data provider for Framework , I expect, I have to use System.Data and System.Data.Common from CF. Is any other diffrence

Thanx
 
This sounds like an interesting project. I'd start by looking at the Help
file for the interfaces you'll need to implement. For example, all the
members of IDataAdapter and IDataReader appear to be supported by the
Compact Framework.
--
Ginny Caughey
..Net Compact Framework MVP

Systemspecialist said:
Hi, how can I make my own Data Provider for CF? It's the same as data
provider for Framework , I expect, I have to use System.Data and
System.Data.Common from CF. Is any other diffrence?
 
One of the main differences over developing a provider for the full
framework is that the compact framework has System.Data and
System.Data.Common where the desktop has a single System.Desktop library.
However all the main constituent parts of a data provider are in these two
libraries including the abstract class DbDataAdapter and the various
interfaces required.

Peter

--
Peter Foot
Windows Embedded MVP
OpenNETCF.org Senior Advisor
www.inthehand.com | www.opennetcf.org
 
Back
Top