cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
agigliotti
Frequent Visitor

Display image from SQL Server On Premise Connection in PowerApps App

When I create an app from my data, which is a SQL Server on Premise Connection, choose a table that contains a field with a varbinary(max) data type, which contains photos, it will not display in the app I create when I insert an image and use "ThisItem.ppt_photo" as the function, ie. "image = ThisItem.ppt_photo.  It is just blank.  I know the photo is valid, because I can get it to display if I use the same field and table as a source in SSRS (SQL Server Reporting Services).  Is this functionality not supported, or am I doing something wrong? I am very new to PowerApps. Below is the screenshot of the powerapps design page where I am attempting this.

 

 

 

 powerapps_webdesinger.jpg  

18 REPLIES 18
v-yamao-msft
Community Support
Community Support

Hi Agigliotti,

 

Per my knowledge, PowerApps is not able to parse Varbinary, so in your SQL Server On-Premise database, you could use image’s path instead of using a Varbinary to store your picture.

 

I have tried it on my side and it works fine. Please have a try on your side and let me know if it also works for you.

 

Best regards,
Mabel Mao

Community Support Team _ Mabel Mao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi 

 

How the specify the path? Shall the path be relative to sql server?

I have my database on SRV-SQL01 server, and a table in my database, where I put the path lin a column [Name] ike that: C:\08036.JPG

But my app doesn't show the image. I tried also with sql Image-type column, wihich has an image in, but no success.

 

Any sugestion how to display image in an app? It doesn't work from Sharepoint list, neither from SQL Server table

Thanks,

Yakimo

 

Capture.PNG

Hi Yakimo,

 

There is a blog about uploading and storing image path to SQL database, please check this link for a reference:
http://geekswithblogs.net/dotNETvinz/archive/2009/08/02/uploading-and-storing-image-path-todatabase-...

 

Per my test, Image Path is working fine and the pictures can be shown on the app. What I did was to add a connection to the data base, then add a gallery and set its items property as the table name. Then in the gallery, add an Image control, the image will be shown.
I also tried with Image column type, but it didn’t work.

 

If you are trying to use SharePoint list, how do you get the images?


As in the SharePoint list Image column, an URL of the image is needed. You could get the Image from Internet. Or you could also save your images to OneDrive for Business, then get the Image URL from OneDrive for Business.

 

Say I have a SharePoint list with Image column type. I get an image URL from the Internet and enter it to the Address field.
1.png
The URL I am using is e.g. https://organicthemes.com/demo/profile/files/2012/12/profile_img.png
Then create an app based on this list, the image can be shown on my app.

 

Hope it can be a reference for you. Please feel free reply if you need more help.

 

Best regards,
Mabel Mao

Community Support Team _ Mabel Mao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Mabel Mao

 

Thanks for your answer.

When I mean Image from SQL server or from SharePoint, I mean the image that I am in control of, not publicly accessed images.

Mine observations are the following:

(1) using SharePoint List with image/link column works only if the link column contains link to a public web address, like text "https://diviceimage.azureedge.net/devices/Acer/TravelMateB.png"

If the link is to my OneDrive located file/folder and the folder and even the image file is shared with everyone - the picture is only shown in designer. Later - iPhone/iPad does not show the image. I think I read somewhere in the posts, that PowerApps team admits that behaviour, and they are going to fix it in 2nd quarter this year

(2) using SQL server database with a Gateway connector to show image:

It works fine, but again - only with a path to the image, and the path should be publicly accessible

 

I do not want to expose my images publicly - do you know if there is a way to show the images, and the access rights to that images to be the same as to the SharePoint List?

Or - if the image is into the SQL database (image binary column) - then the access is coming by the connection string - it will be fine for me. The problem is that PowerApps cannot show the image (unless it is a path to the public website) 

 

Any suggestions are welcome, thanks

 

Regards,

Yakimo

 

Hi Yakimo,

 

Are you using OneDrive for Business?

 

I hope my steps could be a reference for you, it really works fine on my side.
1. Save images to OneDrive for Business.
2. Create a SharePoint list, get Image URL from OneDrive for Business. Share the list with group members with Edit Permission level.
3. Create an app based on the list. Of course, all the images are shown on my app. Save the app to cloud.
4. Then share the app to group members with User permission.
5. Run the app on iPhone, I can see the images with my own account on iPhone, and my shared users can also see the images on iPhone.

 

Please try my steps to see if it works for you. I guess this way will not expose your images publicly.

 

About SQL server image binary column, it is currently not supported yet, I don’t have a time line on when it will be supported.

 

Best regards,
Mabel Mao

Community Support Team _ Mabel Mao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Mabel Mao

 

Thank you for your detailed reply.

I think I have some партиал success and some observations. Success - the image is on iPhone, if the URL contains Authkey

This is what I did: 

I created a list, with two image fields.

- first image field contains the web address I got when I share the image (i.e. incl. authkey) 

https://metroservice-my.sharepoint.com/personal/tzy_metroservice_dk/_layouts/15/guestaccess.aspx?doc...xxxxxxxx (file name is not present in the address)

 

- the second field contains the URL I get when I click the link from (1) - it contains the file name and path, like 

https://metroservice-my.sharepoint.com/personal/tzy_metroservice_dk/Documents/SubFolder/Folder//Cate...

 

I put both images on PowerApp screen.

If I run in designer - I can see both images. If I run it from my iPhone - voilà!- I can see only the image - this with Path that contains Authkey - the left one. Next to it to the right shall be the other image.

See the screenshot (note the address below the images):

 

 

 

Capture.PNG

So - at last - I am able to show images. But my problem is, that I would like to share the folder, and put the folder/file URL into the field.

Because I have 300 images and it is difficult every time I add an image, to share it separately and to get a link (with Authkey) - it will be cumbersome

 

 

Do you have any suggestion how to overcome that?

 

Thanks again,

Yakimo

Mateo_Escobar
Frequent Visitor

Hi, @agigliotti

 

Also it can do it of the next form, define the field in sql server nvarchar(MAX): 

field.jpg

and image in sql server must be encoded base64, Here can do it or powerapps can do it for default :

https://www.base64-image.de/

 

example:

 example.jpg

this is result: result.jpg

 

 

 

if it works for you, Please notification me Smiley Wink

I got this to work.  Thank you.  In my case, I was transferring data from a postgres database to a SQL Server database because PowerApps from what I understand does not support Postgres.  The Postgres database has image files stored in a bytea field. 

 

So, first I needed to convert the Postgres bytea field to base64 and from bytea to text using the following (p.ppt_photo is the field name in postgres: 

 

encode(p.ppt_photo::bytea, 'base64')

 

Using SSIS, I pulled this field into SQL Server into an nvarchar(max) field, and after that I needed to update the field as follows so that it was encoded as base64 jpeg. 

 

update ppt_mas set ppt_photo_nvarchar2 = 'data:image/jpeg;base64,' + ppt_photo_nvarchar2;

 

For some reason, and it may be something in SSIS, the field in SQL Server ended up with a number of blank spaces.  They may not have been spaces, but could have been tabs, because replace(ppt_photo_nvarchar,' ','') did not get rid of them.  I found a function that gets rid of spaces, tabs, and more as follows:

 

CREATE FUNCTION [dbo].[RemoveAllSpaces]

(@MyString as varchar(Max))

Returns varchar(Max)

As

Begin

--NULL

Set @MyString = Replace(@MyString,CHAR(0),'');

--Horizontal Tab

Set @MyString = Replace(@MyString,CHAR(9),'');

--Line Feed

Set @MyString = Replace(@MyString,CHAR(10),'');

--Vertical Tab

Set @MyString = Replace(@MyString,CHAR(11),'');

--Form Feed

Set @MyString = Replace(@MyString,CHAR(12),'');

--Carriage Return

Set @MyString = Replace(@MyString,CHAR(13),'');

--Column Break

Set @MyString = Replace(@MyString,CHAR(14),'');

--Non-breaking space

Set @MyString = Replace(@MyString,CHAR(160),'');

Set @MyString = LTRIM(RTRIM(@MyString));

Return @MyString

End

 

This ended up working.

OK,

 

As I said, I was able to display photos from an nvarchar(max) type field in SQL Server, however, there is another problem, and hopefully someone can help.

 

The photos are causing the app to run extremely slowly, and it doesn't matter whether I display them on the app or not.  If they are in the source database, the app runs way too slowly to be useful.  For example, when doing a search for records, it can take up to a minute, and there are only a couple of hundred of records.  

 

Does anyone have any creative ideas to keep performance at a usable level, while still being able to display photos?

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!   This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08  23 @WarrenBelz  31 @DBO_DV  10 @Amik  19 AmínAA 6 @mmbr1606  12 @rzuber  4 @happyume  7 @Giraldoj  3@ANB 6 (tie)   @SpongYe  6 (tie)     Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08  10@WarrenBelz 25 @DBO_DV  6@mmbr1606 14 @AmínAA 4 @Amik  12 @royg  3 @ANB  10 @AllanDeCastro  2 @SunilPashikanti  5 @Michaelfp  2 @FLMike  5 @eduardo_izzo  2   Meekou 2   @rzuber  2   @Velegandla  2     @PowerPlatform-P  2   @Micaiah  2     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27     Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8   SunilPashikanti8

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (1,165)