Reputation:
I currently have a basic html/js/css web app being hosted on Microsoft Azure. What I need to do next is pull some data an Azure SQL database onto one of the pages using REST calls.
Does anyone know what steps I need to take in order to accomplish this?
Upvotes: 2
Views: 1038
Reputation:
I built my own Web API in VS 2015 for my database and deployed it to azure that way. See reference below:
Upvotes: 1
Reputation: 13918
Your question is too board. There are many ways can satisfy your requirement. Generally speaking, you need to build a backend service to connect to your SQL Database and provide REST APIs service.
On Azure, you can quickly acquire this via Web Apps or API Apps. However, all the operations to Azure SQL database need you to implement by yourself depend on which develop language you are using. You can refer to https://azure.microsoft.com/en-us/documentation/articles/sql-database-get-started/ for more details.
Upvotes: 0