Camera input missing data

Hi, I have a problem with Novacura.
I have Camera input where user takes a photo

But when I want to use this photo data in Novacura variables it shows, that is empty. Only filename is available. Even when I check photo data variable type, It shows NULL. It looks like order_photo data is missing

Do you know how to get this photo data?
Then I would like to encode it to base64 and save in my local sql database.

Hi,

This is an issue in the designer only, it doesn’t show the file data.

But if you commit the app and try to run it on a mobile client, it will work.

See pictures of my simple example:

Best,
Zoltan

What Zoltan says. And, optionally, you can also convert it while storing it in the database (Insert into table (column) select convert(varbinary(max),value1.data)

@zobeno @OlaCarlander So there is no way to see this image.data base64 in Novacura test?

I tried to save it in the MSSQL database, but {Base64Encode(order_photo.data)} still shows as 0x in SQL table.

If you do it Zoltans way you can display it in the file gallery.

If you want only to save it to an MS SQL database, you can convert it to binary by using convert,varbinary(max) - that is an MS SQL command to convert it to binary.