i want to create a package mypkg, but keep getting err.
1 -- CREATE OR REPLACE PACKAGE mypkg
2 -- IS
3 -- i number;
4 -- END;
5 -- CREATE OR REPLACE PACKAGE BODY mypkg
6 -- IS
7 -- begin
8 -- i:=1;
9 -- END;
10 -- /
5/1 PLS-00103: Encountered the symbol "CREATE"
can anyone help me ? if I put '/' after line 4, then err will be : Encountered the symbol "/".
MANY MANY THANKS! I've spent one hour searching online for answer.
1 -- CREATE OR REPLACE PACKAGE mypkg
2 -- IS
3 -- i number;
4 -- END;
5 -- CREATE OR REPLACE PACKAGE BODY mypkg
6 -- IS
7 -- begin
8 -- i:=1;
9 -- END;
10 -- /
5/1 PLS-00103: Encountered the symbol "CREATE"
can anyone help me ? if I put '/' after line 4, then err will be : Encountered the symbol "/".
MANY MANY THANKS! I've spent one hour searching online for answer.