Hi all,
please, how to retrieve an output parameter from a StoredProc when it is of type Bigint?
Is there something like a IBCStoredProc.ParamByName('BIGPAR').AsInt64 ?
Something that will not typecast it to 32bit integer.
Output parameter of type Bigint in Stored Procedure
Variants are converted automatically to any type. You can use code like the following:
Code: Select all
var
v: variant;
i: int64;
begin
i := v;
end;