srv_setutype (Extended Stored Procedure API)
중요: |
---|
Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 말고, 현재 이 기능을 사용하는 응용 프로그램은 가능한 한 빨리 수정하십시오. Use CLR integration instead. |
Sets the user-defined data type for a column in a row.
구문
int srv_setutype (
SRV_PROC *
srvproc
,
int
column
,
DBINT
user_type
);
Arguments
- srvproc
Is a pointer to the SRV_PROC structure that is the handle for a particular client connection. The structure contains information the Extended Stored Procedure API library uses to manage communication and data between the application and the client.
- column
Indicates which column to set. Columns are numbered beginning with 1.
- user_type
Specifies the user-defined data type code.
Returns
SUCCEED or FAIL. Returns FAIL if the column does not 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 that column has been defined with srv_describe and before the last row has been sent.
보안 정보: |
---|
You should thoroughly review the source code of extended stored procedures, and you should test the compiled DLLs before you install them on a production server. For information about security review and testing, see this Microsoft Web site. |
참고 항목
참조
srv_describe (Extended Stored Procedure API)