Re: Help-how to creat a serious of string using PL/SQL

From: Kenneth C Stahl <kstahl_at_lucent.com>
Date: Fri, 18 Jun 1999 13:54:21 -0400
Message-ID: <376A87CC.F563DFFF_at_lucent.com>


You mean there are strings that are not serious?

But seriously, if you want to create an array of strings just use pl/sql tables.

Ken

kaiserrj_at_my-deja.com wrote:

> You can use a FOR loop to call a concatenation function.
> DECLARE
> strTemp VARCHAR2(2048);
> intX NUMBER;
> Begin
> FOR intX IN 1..26 LOOP
> strTemp := F_Add_A_String(strTemp, intX, intX);
> END LOOP;
> END;
>
Received on Fri Jun 18 1999 - 19:54:21 CEST

Original text of this message