Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 1.59 KB

srv-alloc-extended-stored-procedure-api.md

File metadata and controls

48 lines (37 loc) · 1.59 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords dev_langs apilocation apiname apitype
srv_alloc (Extended Stored Procedure API)
Learn about srv_alloc in the Extended Stored Procedure API and how it allocates memory dynamically.
VanMSFT
vanto
03/14/2017
sql
stored-procedures
reference
srv_alloc
C++
opends60.dll
srv_alloc
DLLExport

srv_alloc (Extended Stored Procedure API)

[!INCLUDE SQL Server]

Important

[!INCLUDEssNoteDepFutureAvoid] Use CLR integration instead.

Allocates memory dynamically.

Syntax

  
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.

Remarks

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

Important

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.