ST_LineFromText
Remarque :
Fonction prise en charge dans Oracle et SQLite uniquement ; pour PostgreSQL, utilisez ST_LineString.
Définition
ST_LineFromText accepte une représentation textuelle connue du type ST_LineString et un ID de référence spatiale et retourne un objet ST_LineString.
Syntaxe
Oracle
sde.st_linefromtext (wkt clob, srid integer)
SQLite
st_linefromtext (wkt text, srid int32)
Type de retour
ST_LineString
Exemple
La table linestring_test est créée avec une seule colonne ln1 de type ST_LineString.
L'instruction INSERT suivante insère un objet ST_LineString dans la colonne ln1 à l'aide de la fonction ST_LineFromText.
Oracle
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)', 4326)
);
SQLite
CREATE TABLE linestring_test (id integer);
SELECT AddGeometryColumn (
NULL,
'linestring_test',
'ln1',
4326,
'linestring',
'xy',
'null'
);
INSERT INTO LINESTRING_TEST (id, ln1) VALUES (
1,
st_linefromtext ('linestring (10.01 20.03, 35.93 19.04)', 4326)
);
Thèmes connexes
5/10/2014