Reputation: 11
With regards to a windows phone 8 application, how can I write user input to an external SQL database and also read and display database query data on to the phone?
To be more specific, is there a file similar to a web.config where I could provide a connection string to access a database located on a server?
I would like to create an application where downloading the application and logging into an account will provide access to user data from any windows phone device.
Upvotes: 1
Views: 1028
Reputation: 3121
10,000 foot view looks something like this:
So like Yuriy said...don't connect directly to an external database. You need to develop a web service to do your data access and then consume the web service from your app.
Upvotes: 2