Subject | Re: [firebird-support] Concatenating Strings in SP |
---|---|
Author | Martijn Tonies |
Post date | 2003-08-06T11:37:06Z |
Anand,
STR_RESULT = STR_RESULT || ' Processing...';
With regards,
Martijn Tonies
Database Workbench - the developer tool for InterBase & Firebird
Upscene Productions
http://www.upscene.com
> I am now facing another problem: How do I concatenate twoUse the SQL operator - the double pipe symbol:
> strings and store the result in one of the strings used? For
> e.g. if I have a VARCHAR variable STR_RESULT in my SP. I want
> this variable to take values such as follows:
>
> STR_RESULT = 'START';
> STR_RESULT = :STR_RESULT + ' PROCESSING ...';
> STR_RESULT = :STR_RESULT + ' END';
>
STR_RESULT = STR_RESULT || ' Processing...';
With regards,
Martijn Tonies
Database Workbench - the developer tool for InterBase & Firebird
Upscene Productions
http://www.upscene.com