ST_LineFromText |
|
Release 9.3 |
NOTE: Spatial type for Oracle only; for spatial type for PostgreSQL, use ST_LineString.
sde.st_linefromtext (wkt clob, srid integer)
CREATE TABLE linestring_test (ln1 sde.st_geometry);
INSERT INTO linestring_test VALUES (
sde.st_linefromtext ('linestring (10.01 20.03, 35.93 19.04)', 0)
);