Subject Re: [firebird-support] PASCAL UDR - stored procedure BLOB param and return
Author livius
Anyone can point me in some direction?
 
regards,
Karol Bieniaszewski
 
Sent: Monday, May 21, 2018 9:35 PM
Subject: [firebird-support] PASCAL UDR - stored procedure BLOB param and return
 
 

Hi,
 
i can work in udr with near to all types of params but
how can i work with blob as input parameter  and output parameter
for stored procedure?
 
should this be as BLOB or something else?
 
InMessage = record
        nr: Integer;
        nrNull: WordBool;
        dane: Blob;
        daneNull: WordBool;
    end;
 
InMessagePtr = ^InMessage;
 
OutMessage = record
        result: Integer;
        resultNull: WordBool;
        dane: Blob;
        daneNull: WordBool;
    end;
 
    OutMessagePtr = ^OutMessage;
 
how to consume this?
 
please advice
 
regards,
Karol Bieniaszewski