Subject Re: [firebird-support] string and DLL
Author Ann W. Harrison
Geomastique wrote:
> begin
> myfunction := 'my text value is : ' + myvalue;
> end;

The SQL standard concatenation operator is || not +

myfunction := 'my text value is : ' || myvalue;

Regards,


Ann