Format
SDO_WFS_PROCESS.GetFeatureTypeId(
ftnsUrl IN VARCHAR2,
ftName IN VARCHAR2) RETURN NUMBER;Description
Gets the feature type ID of a specified feature type.
Parameters
Usage Notes
For information about support for Web Feature Services, see Web Feature Service (WFS) Support.
Examples
The following example gets the feature type ID of a feature type named COLA.
DECLARE
ftid number;
BEGIN
ftId := SDO_WFS_PROCESS.GetFeatureTypeId('http://www.example.com/myns','COLA');
END;
/