SDO_WFS_PROCESS.InsertFtDataUpdated
Format
SDO_WFS_PROCESS.InsertFtDataUpdated(
ns IN VARCHAR2,
name IN VARCHAR2,
updatedRowList IN ROWPOINTERLIST,
updateTs IN TIMESTAMP);
Description
Inserts a notification that the data for one or more feature instances was updated in the database.
Parameters
ns
Namespace of the feature type.
name
Name of the feature type.
updatedRowList
Rowids of feature instances that have been updated.
updateTS
Date and time when the data was updated.
Usage Notes
This procedure is used for WFS cache data synchronization.
For information about support for Web Feature Services, see Web Feature Service (WFS) Support.
Examples
The following example inserts a notification that the data for the feature instances associated with specific rowids in the COLA_MARKETS_CS table was updated in the database.
. . .
begin
updatedRowIdList:= . . . -- list of rowIds of the
-- WFS_REL_USER.COLA_MARKETS_CS table
-- that have been updated.
. . .
SDO_WFS_PROCESS.InsertFtDataUpdated(
'http://www.example.com/myns','COLA', updatedRowIdList, sysdate);
. . .
end;
/