Can someone point me to a tutorial or some resource that will show me how I can download or use a sql database from a web server and use that content in an app. I want to control content in an app dynamically, such that each time the app is launched, it loads content from the database and uses that to populate the app.
Asked
Active
Viewed 298 times
2 Answers
0
There are many ways to answer this question, but basically you should create a REST
service (http://www.ibm.com/developerworks/java/tutorials/j-rest/) in the language of your choice.
This will connect to the SQL Server database.
Then you create a REST
client in your program (consuming restful web service in iOS 5), and you can then interact with the database.

Community
- 1
- 1

James Black
- 41,583
- 10
- 86
- 166