pggeodb.nancy.inra.fr/db_robot - db_robot on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Function: asgml

 

 

Schema

topology

 

Owner

albenard

 

Descriptions

args: tg, nsprefix_in, precision, options, visitedTable - Returns the GML representation of a topogeometry.

 

Options

Option

Value

Returns

text

Language

sql

Parameters

tg topology.topogeometry

nsprefix text

prec integer

options integer

vis pg_catalog.regclass

 

Definition

CREATE OR REPLACE FUNCTION topology.asgml (
 tg topology.topogeometry,
 nsprefix text,
 prec integer,
 options integer,
 vis pg_catalog.regclass
)
RETURNS text AS
$span$
SELECT
topology.AsGML($1, $2, $3, $4, $5, '');
$span$
LANGUAGE
'sql'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
100;

COMMENT ON FUNCTION topology.asgml(tg topology.topogeometry, nsprefix text, prec integer, options integer, vis pg_catalog.regclass)
IS 'args: tg, nsprefix_in, precision, options, visitedTable - Returns the GML representation of a topogeometry.';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51
Previous topic Chapter index Next topic