views:

21

answers:

1

Dose windows mobile 6 SDK support sqlserverce database operations into MFC smart device application? I can create database on sqlserverce using COM components, but I dont want to use it instead will prefer windows mobile 6 SDK. Is it possible?

+1  A: 

What does the WinMo SDK have to do with it? SQL Compact is a separate thing shipped outside of the SDKs. Interacting with SQL CE from C++ is done through set of OLEDB interfaces. If you're asking if you can use the CEDB or EDB APIs for interaction with a SQL Compact database, then the answer is "no."

ctacke
Previously I was trying hard to connect to SQLCE database using SDK. I did it through EDB APIs. Thank you for clearing doubts....
user001