The SE_ShapeToSQL() function

The SE_ShapeToSQL() function constructs an ST_Geometry given its ESRI shape representation. The SRID of the St_Geometry is 0.

Syntax

SE_ShapeToSQL(ShapeGeometry lvarchar)

Return type

ST_Geometry

Example

The following C code fragment contains ODBC functions that insert data into the lots table. The lots table was created with two columns: lot_id, which uniquely identifies each lot, and the lot polygon column, which contains the geometry of each lot:
CREATE TABLE lots (lot_id  integer,
                   lot     ST_MultiPolygon);
The SE_ShapeToSQL() function converts shapes into ST_Geometry values. The INSERT statement contains parameter markers to accept the lot_id and the lot data, dynamically:
/* Create the SQL insert statement to populate the lots table.
     * The question marks are parameter markers that indicate the
     * column values that will be inserted at run time. */
    sprintf(sql_stmt,
            "INSERT INTO lots (lot_id, lot) "
            "VALUES(?, SE_ShapeToSQL(?))");

    /* Prepare the SQL statement for execution. */
    rc = SQLPrepare (hstmt, (unsigned char *)sql_stmt, SQL_NTS);

    /* Bind the lot_id to the first parameter. */
    pcbvalue1 = 0;
    rc = SQLBindParameter (hstmt, 1, SQL_PARAM_INPUT, SQL_C_SLONG,
                           SQL_INTEGER, 0, 0,
                           &lot_id, 0, &pcbvalue1);

    /* Bind the lot geometry the second parameter. */
    pcbvalue2 = lot_shape_len;
    rc = SQLBindParameter (hstmt, 2, SQL_PARAM_INPUT, SQL_C_BINARY,
                           SQL_INFX_UDT_LVARCHAR, lot_shape_len, 0,
                           lot_shape_buf, lot_shape_len, &pcbvalue2);

    /* Execute the insert statement. */
    rc = SQLExecute (hstmt);