ST_UserData
Updated at:
Retrieves user-defined data.
Syntax
cstring ST_UserData(sfmesh sfmeshObject);Parameters
Parameter Name | Description |
sfmeshObject | The sfmesh object. |
Description
This function returns user-defined data. You must set the data in advance using the ST_SetUserData function.
Examples
SELECT ST_UserData(ST_SetUserData(the_mesh, 'mesh_name'))
FROM t_table;
-------------------
mesh_name
Is this page helpful?