i have a smart device that installed windows CE 5 on it. i want to write a c# program so that it install on smart device and can communicate to external database, this database is a SQL Server Standard or Enterprise Edition (not Compact Edition) and hosted on a PC. communication between device and PC are established through LAN.
so, i cant use System.Data.SqlClient
namespace and it's classes, because this name space and it's classes dont recognize in windows CE. and too i cant use System.Data.SqlServerCe
namespace and it's classes because i want to connect to External Enterprise SQL Server Database and this is not a SQL CE database.
how i can do this?