Uses of Class
com.microsoft.sqlserver.jdbc.Geometry

Packages that use Geometry 
Package Description
com.microsoft.sqlserver.jdbc  
  • Uses of Geometry in com.microsoft.sqlserver.jdbc

    Methods in com.microsoft.sqlserver.jdbc that return Geometry 
    Modifier and Type Method Description
    static Geometry Geometry.deserialize​(byte[] clr)
    Constructor for a Geometry instance from an internal SQL Server format for spatial data.
    Geometry ISQLServerResultSet.getGeometry​(int columnIndex)
    Returns the value of the designated column in the current row of this ResultSet object as a com.microsoft.sqlserver.jdbc.Geometry object in the Java programming language.
    Geometry ISQLServerResultSet.getGeometry​(java.lang.String columnName)
    Returns the value of the designated column in the current row of this ResultSet object as a com.microsoft.sqlserver.jdbc.Geometry object in the Java programming language.
    Geometry SQLServerResultSet.getGeometry​(int columnIndex)  
    Geometry SQLServerResultSet.getGeometry​(java.lang.String columnName)  
    static Geometry Geometry.parse​(java.lang.String wkt)
    Constructor for a Geometry instance from an Open Geospatial Consortium (OGC) Well-Known Text (WKT) representation.
    static Geometry Geometry.point​(double x, double y, int srid)
    Constructor for a Geometry instance that represents a Point instance from its X and Y values and an Spatial Reference Identifier.
    static Geometry Geometry.STGeomFromText​(java.lang.String wkt, int srid)
    Constructor for a Geometry instance from an Open Geospatial Consortium (OGC) Well-Known Text (WKT) representation augmented with any Z (elevation) and M (measure) values carried by the instance.
    static Geometry Geometry.STGeomFromWKB​(byte[] wkb)
    Constructor for a Geometry instance from an Open Geospatial Consortium (OGC) Well-Known Binary (WKB) representation.
    Methods in com.microsoft.sqlserver.jdbc with parameters of type Geometry 
    Modifier and Type Method Description
    void ISQLServerPreparedStatement.setGeometry​(int parameterIndex, Geometry x)
    Sets the designated parameter to the given microsoft.sql.Geometry Class object.
    void SQLServerPreparedStatement.setGeometry​(int n, Geometry x)