PROCEDURE ADDCODE (mfilecode CHAR, new_code CHAR, new_desc
CHAR) IS
BEGIN
INSERT INTO mfilecode
VALUES (new_code, new_desc);
END ADDCODE;
You will have to use the dbms_sql package to parse, bind and execute
a
dynamic SQL statement.