Procedures Previous topic Chapter index Next topic

SYS_POS

 

Input Parameters

Parameter

Type

Description

STR

VARCHAR(200)

 

SUBSTR

VARCHAR(200)

 

 

Output Parameters

Parameter

Type

Description

POS

INTEGER

 

 

Description

(There is no description for procedure SYS_POS)

 

Definition

CREATE PROCEDURE SYS_POS(
    STR VARCHAR(200),
    SUBSTR VARCHAR(200))
RETURNS (
    POS INTEGER)
AS
begin
  /* R.5.0.17 */
  suspend;
end

 

     Previous topic Chapter index Next topic