Returns an ST_MultiCurve value, which is transformed from a LONG VARCHAR value containing the Well Known Text (WKT) representation of an ST_MultiCurve
[DBO.]ST_MCurveFromText(wkt[, srid])
Name | Type | Description |
---|---|---|
wkt |
LONG VARCHAR |
The WKT representation. |
srid |
INT |
The SRID of the result. If not specified, the default is 0. |
ST_MultiCurve Returns an ST_MultiCurve value created from the input string.
The spatial reference system identifier of the result is the given by parameter srid.
The ST_MCurveFromText function is equivalent to the following:
CREATE FUNCTION DBO.ST_MCurveFromText( wkt LONG VARCHAR, srid INT DEFAULT 0 ) RETURNS ST_MultiCurve BEGIN DECLARE geo ST_Geometry; set geo = ST_Geometry::ST_GeomFromText( wkt, srid ); RETURN CAST( geo AS ST_MultiCurve); END |
The ST_MCurveFromText function is not present by default in newly created databases. Use the sa_install_feature system procedure to install the spatial SQL compatibility functions. See sa_install_feature system procedure.
SQL/MM (ISO/IEC 13249-3: 2006) 9.3.6
![]() |
Discuss this page in DocCommentXchange.
|
Copyright © 2012, iAnywhere Solutions, Inc. - SQL Anywhere 12.0.1 |