ST_Raster_Util.getLibraryVersion
Definition
ST_Raster_Util.getLibraryVersion (st_raster_getversionlib in PostgreSQL) returns the current version number of the ST_Raster type library.
Nota:
This function does not apply to SQL Server, since the ST_Raster type library is implemented as an assembly for SQL Server.
Syntax
Oracle
sde.ST_Raster_Util.getLibraryVersion ()
PostgreSQL
sde.st_raster_getVersionLib ()
Returns
Oracle
VARCHAR2
PostgreSQL
Text
Example
This SQL SELECT statement shows the current version number of the ST_Raster package.
Oracle
SELECT dfr.st_raster_util.getLibraryVersion() FROM dual; 1.0.0
PostgreSQL
SELECT sde.st_raster_getVersionLib(); 1.0.0
3/6/2012