ST_MLineFromText |
|
Release 9.3 |
NOTE: Spatial type for Oracle only; for spatial type for PostgreSQL, use ST_MultiLineString.
sde.st_mlinefromtext (wkt clob, srid integer)
CREATE TABLE mlinestring_test (gid smallint, ml1 sde.st_geometry);
INSERT INTO mlinestring_test VALUES (
1,
sde.st_mlinefromtext
('multilinestring ((10.01 20.03, 10.52 40.11, 30.29 41.56,
31.78 10.74), (20.93 20.81, 21.52 40.10))', 0)
);