How to connect to SQL Server Database with Ionic app?

Hello everyone,

I’m creating an mobile app with Ionic and I need to access to a SQL Server Database to get app information login, notifications, user information etc. I’ve read something about API RESTful but I’m quite lost. If someone could share some documentation I’d be so grateful.

Where is your Sql Server data hosted?

A mobile app cannot access data directly from a database (except a database on the device) so you will need a means for the data to be made available. This is typically done with a RESTful API which is usually a website running code that gets requests, sends a query to the database, and then publishes a response that can be accessed by the device.

2 Likes