vote up 1 vote down star

Is there any way that I can connect to a server DB (Oracle, MS SQL, Sybase, ...) from a Windows Mobile application (written in C# using VS 2008). Is there support for say ODBC or another technologie? I'm connecting to a LAN via WLAN or via UMTS.

There is no possibility for me to install an additional server component.

flag

75% accept rate

3 Answers

vote up 2 vote down check

Sure System.Data.SqlClient for SQL Server works just fine. For Oracle there's OraDirect.

link|flag
vote up 1 vote down

It seems that no. OdbcConnection members are not marked with Compact Framework support flag

Check out SQL Server Compact: it shares a common API with the other Microsoft SQL Server editions. It also includes ADO.NET providers for data access using ADO.NET APIs, and built-in synchronization capabilities (from WikiPedia)

link|flag
vote up 1 vote down

No, the only direct connectivity option in CE is System.Data.SqlClient, which only works for SQL Server.

I've only done it using a purpose-built socket server - which has the benefit of enabling you to turn it into a useful abstraction layer, but is a medium-sized bit of work. Portable to any tcpip networkable client device, however. You can also then make it asynchronous which is almost required in a mobile environment.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.