I've built an app that connects to a SQL database. I have a SQL table that contains links to images saved in Sharepoint cloud storage.
Like this:
| Product Index | Product Name | Product Image |
| 1 | Product_1 | SharePoint_URL_1 |
| 2 | Product_2 | SharePoint_URL_2 |
| 3 | Product_3 | SharePoint_URL_3 |
Is there a way I can load and display the images in my app?
Note: despite having SharePoint, I don't want to use SharePoint Lists. We're committed to organizing all our data through SQL.