Procedures Previous topic Chapter index Next topic

NOM_CONSTANTES

 

Input Parameters

Parameter

Type

Description

ANO

CHAR(4)

 

 

Output Parameters

Parameter

Type

Description

EMPLEADO

CHAR(15)

 

CONSTANTE

CHAR(10)

 

VALOR

DOUBLE PRECISION

 

 

Description

(There is no description for procedure NOM_CONSTANTES)

 

Definition

CREATE PROCEDURE NOM_CONSTANTES(
    ANO CHAR(4))
RETURNS (
    EMPLEADO CHAR(15),
    CONSTANTE CHAR(10),
    VALOR DOUBLE PRECISION)
AS
begin
  /* R.5.0.17 */
  suspend;
end

 

     Previous topic Chapter index Next topic