Aracılığıyla paylaş


STGeomCollFromWKB (veri türü geometri)

Returns a geometrycollection instance from an Open Geospatial Consortium (OGC) Well-Known Binary (WKB) representation.

STGeomCollFromWKB ( 'WKB_geometrycollection' , SRID )

Bağımsız değişkenler

  • WKB_geometrycollection
    Is the WKB representation of the geometrycollection instance you wish to return.WKB_geometrycollection is a varbinary(max) expression.

  • SRID
    Iş bir int kayma gösteren bir ifade KIMLIĞI (SRID), başvuru geometry döndürmek istediğiniz örnek.

Dönüş Türleri

SQL Server döndürme türü: geometry

CLR dönüş türü: SqlGeometry

Remarks

OGC türünü geometry döndürülen örnek STGeomCollFromWKB() olan küme için GeomCollection, MultiPolygon, MultiLineString, veya MulitPoint, bağlı bir karşılık gelen WKB giriş.

Bu yöntem, giriş well-formatted değilse bir FormatException özel durum oluşturur.

Örnekler

Aşağıdaki örnek kullanır. STGeomCollFromWKB() Oluşturulacak bir geometry örnek.

DECLARE @g geometry;
SET @g = geometry::STGeomCollFromWKB(0x0107000000020000000103000000010000000400000000000000000014400000000000001440000000000000244000000000000014400000000000002440000000000000244000000000000014400000000000001440010100000000000000000024400000000000002440, 0);
SELECT @g.STAsText();

See Also

Other Resources