Hi,
I need your help. How can I import a file from a Filestream table and display it in Powerbulider.
I am using PB 12.5 and SQL Server 2016.
Thanks
- Yasir Masood
- PowerBuilder
- Thursday, 27 April 2017 20:35 PM UTC
There are replies in this question but you are not allowed to view the replies from this question.
blob lb_data
SELECTBLOB blob_column
INTO :lb_data
FROM
WHERE = :yourvalue;
UPDATEBLOB SET =:lb_data WHERE =:yourvalue