开发者

Windows Mobile - Accessing Application's table from PC

开发者 https://www.devze.com 2023-01-20 22:40 出处:网络
I\'d like to know 开发者_StackOverflowhow to access the data stored in the SQL server tables from Windows Mobile to PC.

I'd like to know 开发者_StackOverflowhow to access the data stored in the SQL server tables from Windows Mobile to PC.

for e.g. I can add many data to the application and when I connect to the PC, I'd like to access it.

We can use SQL Server Sync for synchronizing the data and using web services, it's possible to access the data but this has dependency with IIS.

Is there any better methods to access the data from application?


When you connect to the PC you get an ActiveSync/Window Device Center connection. With that you get tow things:

  • Avaiability of Remote API (RAPI) methods
  • A NDIS network connection

Neither of these provide an "out-of-the-box" mechanism for communicating with the database, so you have to either develop or acquire something that will do it for you. Here you would have just about any number of options, but a few that come to mind are:

  • Use a third-party solution like Primeworks DesktopSqlCe
  • Create your own RAPI extension DLL that allows you to pass down commands and get back results
  • Create a proprietary client/server application and protocol that uses sockets to allow you to send commands and get results
  • Use Microsoft's Sync Framework to synchronize the data
  • Use SQL Merge Replication
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号