2013-11-26 3 views
1

내 라인이 오류를 얻는 것은있다 : 나는 오라클 양식을 처음 wokring하고"Client_Text_IO.File_Type이 declard해야한다"PL/SQL 오라클 형태로 코드

PROCEDURE LOAD_DATA IS 

FILE_LOG Client_Text_IO.File_Type; 
LINE_LOG VARCHAR(32767); 
v_txt  varchar(32767); 
v_counter number(12) := 0; 

BEGIN 

file_log := Client_Text_IO.fopen(file_upload.origin, 'r'); 

END; 

. 나는 그것에 대해 전혀 모른다. 나는 거의 작업을 마쳤지 만 컴파일 할 때 오류가 발생합니다. 전체 오류 설명,

Error 201 at line 2, column 11 
    identifier 'CLIENT_TEXT_IO.FILE_TYPE' must be declared 
Error 0 at line 2, column 11 
    Item ignored 
Error 320 at line 12, column 2 
    the declaration of the type of this expression is incomlete or malformed 
Error 0 at line 12, column 2 
    Statement ignored 
Error 320 at line 14, column 3 
    the declaration of the type of this expression is incomplete or malformed 
Error 0 at line 14, column 3 
    Statement ignored 
Error 201 at line 20, column 6 
    identifier 'V_TEXT' must be declared 
Error 0 at line 20, column 3 
    Statement ignored 
Error 320 at line 24, column 24 
    the declaration of the type of this expression is incomplete or malformed 
Error 0 at line 30, column 2 
    Statement ignored 

답변

0

webutil.pll 라이브러리를 양식에 첨부해야합니다.

+0

예, 내 프로젝트 @ 컴파일 시간에 첨부됩니다. 그러나 그것을 실행하면 다시 오류가 발생합니다. 이 라이브러리를 @ 런타임에 어떻게 제공 할 수 있습니까? – user3036642

관련 문제