Re: stored function problem

From: Dyrson Rodrigues Alves Junior <dyrson_at_casasoft.com.br>
Date: Mon, 3 May 1999 12:39:12 -0400
Message-ID: <372DD1B4.46A2FDE9_at_casasoft.com.br>


River wrote:
> rcontent char;

The rcontent variable has length 1.

> table: secret ( code varchar2(8),
> content varchar2(10) )

The content column has length 10.
So you canīt assign the column to the variable. Solution:
declare the rcontent variable with length 10. rcontent char(10); or
rcontent varchar2(10); and the better solution rcontent secret.content%type;

-- 
+-------------------------------+----------------------------------+
| Dyrson Rodrigues Alves Junior | Casa de Software                 |
| Analista de Sistemas          | Oracle Approved Education Center |
| mailto:dyrson_at_casasoft.com.br | http://www.casasoft.com.br       |
+-------------------------------+----------------------------------+
Received on Mon May 03 1999 - 18:39:12 CEST

Original text of this message