GetBlob

PowerBuilder Native Interface

IPB_Session interface:

GetBlob method

Description

Syntax

GetBlob(pbblob bin)

Return Values

Examples

case pbvalue_blob:
   pStr = (LPCTSTR)Session-> GetBlob(retVal.blob_val);
   if (strncmp(pStr, "null", 4)==0 )
      ci -> returnValue ->SetToNull();
   else
      {
         ci -> returnValue->SetBlob(retVal.blob_val);
         Session -> ReleaseValue(retVal);
      }
   break;

See Also