Is it possibe to save date in remote database (on server) by mobile with WP7?
I wolud like to use ADO.NET and insert some values. If it is not possible what else can I use?
Is it possibe to save date in remote database (on server) by mobile with
Share
AFAIK you can’t – I’m 100% positive you can’t in WP8 or WinRT, so I assume it also holds for WP7.
The best you can do is host a web-service somewhere that will provide a RESTful access to the database, then use
WebClient(or whatever way you prefer to make a HTTP request) in the phone app to call the service.