srv_alloc (Extended Stored Procedure API)

ms164702.note(ko-kr,SQL.90).gif중요:
Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 말고, 현재 이 기능을 사용하는 응용 프로그램은 가능한 한 빨리 수정하십시오. Use CLR integration instead.

Allocates memory dynamically.

구문


void * srv_alloc ( DBINT
size
);

Arguments

  • size
    Specifies the number of bytes to allocate.

Returns

A pointer to the newly allocated space. If size bytes cannot be allocated, a null pointer is returned.

주의

The srv_alloc function is equivalent to the Microsoft Windows API GlobalAlloc function. Normal Windows API C run-time memory management functions can be used in an Extended Stored Procedure API application.

ms164702.security(ko-kr,SQL.90).gif보안 정보:
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.