Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: What's wrong with my PLSQL Function?

Re: What's wrong with my PLSQL Function?

From: Dirk Tschentscher <dirkTHIS_at_REMvolkswagen.de>
Date: Wed, 23 Apr 2003 08:58:30 +0200
Message-ID: <b85diq$aqf1@doiweb4.volkswagen.de>


Morning,

You use "v_num" , this variable is not declared !

Rgds

    Dirk

"DH" <v_dh_at_hotmail.com> schrieb im Newsbeitrag news:f5042544.0304222234.51fb0a93_at_posting.google.com...
> Hi all,
>
> I'm learning in PL/SQL.
> I create a little PLSQL block (disp_chars.sql) to execute the function
> f_line() as below:
>
>
> disp_chars.sql
> ==============
> set serveroutput on
> set verify off
>
> CREATE OR REPLACE FUNCTION f_line (v_number in INTEGER, v_character in
> VARCHAR2)
> RETURN VARCHAR2
> IS
> v_line VARCHAR2(80) := '';
>
> BEGIN
>
> WHILE v_num > 0 LOOP
> v_line := v_line + v_character;
> v_num := v_num - 1;
> END LOOP;
>
> RETURN v_line;
>
> END;
> /
> Declare
> v_num INTEGER;
> v_char VARCHAR2(1);
> v_result VARCHAR2(80);
> Begin
> v_num := &number;
> v_char := '&character';
>
> v_result := f_line(v_num,v_char);
>
> dbms_output.put_line(v_result);
>
> end;
>
> --------------------------------------------------------------------
>
> and It failed with the error below:
>
> Warning: Function created with compilation errors.
>
> Enter value for number: 8
> Enter value for character: *
> v_result := f_line(v_num,v_char);
> *
> ERROR at line 9:
> ORA-06550: line 9, column 16:
> PLS-00905: object SCOTT.F_LINE is invalid
> ORA-06550: line 9, column 4:
> PL/SQL: Statement ignored
>
> What's wrong with my function f_line() above?
> How can I debug a PLSQL function?
> I'm very newbie in Oracle PL/SQL.
>
> Thanks in advance for any help.
>
> DH
Received on Wed Apr 23 2003 - 01:58:30 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US