Sets the user-defined data type for a column in a row.
int srv_setutype (
SRV_PROC * srvproc,
int column,
DBINT user_type );
SUCCEED or FAIL. Returns FAIL if the column doesn’t exist.
A column has two data types: its actual data type and its user-defined data type. The user-defined data type is used by Microsoft® SQL Server™ to store the actual user-defined data type of the column (if any) and column description information (such as nullability and updatability) for the column.
The srv_setutype function can be called any time column has been defined with srv_describe and before the last row has been sent.
srv_describe |