Db connection

  • Thread starter Thread starter OdlDevelop
  • Start date Start date
O

OdlDevelop

Good morning to every one. I’m developing a little application for
Windows Mobile with C# and I need a database connection. Is it
possible to connect to a mdb database from an application based
on .net 3.5 compact framework? If yes, how? If not, is there any other
database I can use (different from Sql Server CE)? Thank you for your
help, have a nice weekend
 
Good morning to every one. I’m developing a little application for
Windows Mobile with C# and I need a database connection. Is it
possible to connect to a mdb database from an application based
on .net 3.5 compact framework? If yes, how? If not, is there any other
database I can use (different from Sql Server CE)? Thank you for your
help, have a nice weekend

You could always write a web service to act as a middle layer, may be
not the most efficient but it would work happily.

Chrtis
 
No you can't use an MDB. Why can't you use SQL CE?


--

Chris Tacke, Embedded MVP
OpenNETCF Consulting
Giving back to the embedded community
http://community.OpenNETCF.com

Good morning to every one. I’m developing a little application for
Windows Mobile with C# and I need a database connection. Is it
possible to connect to a mdb database from an application based
on .net 3.5 compact framework? If yes, how? If not, is there any other
database I can use (different from Sql Server CE)? Thank you for your
help, have a nice weekend
 
For this type of scenario one would usually write to a local SQL Compact
database then sync using either; replication; sync services; or RDA.
 
Back
Top