I try to create a PL / SQL package in Oracle with the header
create PACKAGE "PO_LDS_CLI_AFECTADO2" AS
PROCEDURE GET_VIP(V_ORDER in number, v_out OUT NUMBER);
END po_lds_cli_afectado2;
and the body
create or replace PACKAGE BODY "PO_LDS_CLI_AFECTADO2" AS
PROCEDURE GET_VIP(v_order IN NUMBER, v_out OUT NUMBER)
IS
v_rpta INTEGER;
BEGIN
v_rpta := PO_LDS_SYNCIFX.GET_CLIENTE_IMPORTANTE_AFEC(v_order);
v_out := v_rpta;
END GET_VIP
END po_lds_cli_afectado2
drop package po_lds_cli_afectado2
But I get the following error:
pls-00103 Encountered the symbol "end-of-file" when excepting one of the following: ;