1つの手順で簡単なパッケージを作成しようとしています:
CREATE OR REPLACE
PACKAGE PACKAGE1 AS
procedure procHTML1 is
begin
htp.print('
<html>
<head>
<title>PL/SQL Example Pages</title>
</head>
<body>');
end procHTML1;
END PACKAGE1;
しかし、私は得る
Error(5,3): PLS-00103: Encountered the symbol "BEGIN" when expecting one of the following: language
Error(14,5): PLS-00103: Encountered the symbol "PACKAGE1" when expecting one of the following: ;
どんな助けでもありがたいです