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

Home -> Community -> Usenet -> c.d.o.misc -> dbms_sql.column_value syntax

dbms_sql.column_value syntax

From: Marshall family <mtalk_at_flash.net>
Date: 1998/05/01
Message-ID: <354A0BD4.2E834D47@flash.net>#1/1

Can anyone tell me why I am receiving the syntax error #307, "too many declarations of 'COLUMN_VALUE' match this call.

Done within Developer 2000

My code.

declare

   b_survey gp_blkhdr.survey_name%TYPE;

begin

   v_cursor := dbms_sql.open_cursor;
   dbms_sql.parse(v_cursor, 1, b_survey, 2);

   dbms_sql.column_value(v_cursor, 1, b_survey); end;

I can use the same code but with b_value, which is of NUMBER type, and it will work fine. Just get the error when using VARCHAR2 type.

Appreciate any help.

Wes Received on Fri May 01 1998 - 00:00:00 CDT

Original text of this message

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