I'm using PB 12.5.1 / DB2 Version 10 / ODBC driver
When executing this embedded SQL Statement in the application, I'm getting a popup window asking me to "Select Data Source"
SELECTBLOB BLOB_OBJECT
INTO :LB_TEST
FROM BLOB_TABLE
WHERE BLOB_NAME = 'BANANA.JPG'
;
Having the user manually select the ODBC DataSource from within the application is not an option for us.
I also tried with "USING SQLCA", that didn't make any difference.
Is there any specific transaction object/parameters that need to be defined for SELECTBLOB ?
thanks
Ganesh