how can we do connectivity of the database through using dotnet fr

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

Guest

Actually I would like to develop the Application which have connectivity of
the server side database and front end in the dotnet compact frame work for
mobile device and this mobile device connect into the network of WiFi.
 
you can use ADO.NET from the Compact Framework to access SQL Server directly
over a wireless network (System.Data.SqlClient namespace) but you need to
architect
your mobile application to handle the inevitable loss of connectivity.
Having an off-line data
cache using SQL Server CE on device or some other file-based local cache is
an important
part of an architecture like this. You can also have a look at the Data
Access Application
Block at www.businessanyplace.net.
 
Back
Top