I did as you suggested, but I am still getting the compilation errors:
Errors for PACKAGE BODY EXPORT_TOOL:
LINE/COL ERROR
-------- --------------------------
24/9 PLS-00215: String length constraints must be in range (1 ..
32767)
25/12 PLS-00215: String length constraints must be in range (1 ..
32767)
26/13 PLS-00215: String length constraints must be in range (1 ..
32767)
27/11 PLS-00215: String length constraints must be in range (1 ..
32767)
LINE/COL ERROR
-------- --------------------------
44/14 PLS-00215: String length constraints must be in range (1 ..
32767)
57/11 PL/SQL: Statement ignored
57/23 PLS-00306: wrong number or types of arguments in call to '||'
76/15 PLS-00215: String length constraints must be in range (1 ..
32767)
89/11 PL/SQL: Statement ignored
89/24 PLS-00306: wrong number or types of arguments in call to '||'
Main Topics
Browse All Topics





by: sdstuberPosted on 2009-10-28 at 09:53:20ID: 25685371
don't specify sizes on your parameters
CREATE OR REPLACE PACKAGE export_tool
AS
FUNCTION get_prereq(p_subj_code IN VARCHAR2, p_crse_numb IN VARCHAR2)
RETURN CLOB;
FUNCTION get_coreq(p_subj_code IN VARCHAR2, p_crse_numb IN VARCHAR2)
RETURN CLOB;
PROCEDURE p_print_data;
END export_tool;
/