STMLineFromWKB (tipo di dati geography)
Restituisce un'istanza geographyMultiLineString di una rappresentazione Well-Known Binary (WKB) OGC (Open Geospatial Consortium).
Sintassi
STMLineFromWKB ( 'WKB_multilinestring' , SRID )
Argomenti
WKB_multilinestring
Rappresentazione WKB dell'istanza geographyMultiLineString da restituire. WKB_multilinestring è un'espressione varbinary(max).SRID
Espressione int che rappresenta l'identificatore SRID dell'istanza geographyMultiLineString da restituire.
Tipi restituiti
SQL Server restituito: geography
Tipo CLR restituito: SqlGeography
Tipo OGC: MultiLineStringMultiLineString
Osservazioni
Questo metodo genera un'eccezione FormatException se l'input non è formattato in modo corretto.
Esempi
Nell'esempio seguente viene utilizzato il metodo STMLineFromWKB() per creare un'istanza geography.
DECLARE @g geography;
SET @g = geography::STMLineFromWKB(0x010500000002000000010200000005000000F4FDD478E9965EC0DD24068195D3474083C0CAA145965EC0508D976E12D3474083C0CAA145965EC04E62105839D44740F4FDD478E9965EC04E62105839D44740F4FDD478E9965EC0DD24068195D34740010200000005000000022B8716D9965EC0C1CAA145B6D34740022B8716D9965EC06ABC749318D447407593180456965EC06ABC749318D447407593180456965EC03333333333D34740022B8716D9965EC0C1CAA145B6D34740, 4326);
SELECT @g.ToString();