Feature Only in Enterprise Editions Using the Extended Stored Procedure Wizard to create an extended stored procedure is supported only in Visual C++ Enterprise Editions. For more information, see Visual C++ Editions.
You can use the Extended Stored Procedure wizard to generate a Win32 DLL project, with the proper initialization code, that contains one exported function. The wizard will also include the header file (srv.h) and library (opends60.lib) needed for using ODS. The one function that is created includes code for a sample program, utilizing ODS.
To create an extended stored procedure
After assigning a name to your extended stored procedure click OK. The wizard will generate project files:
proc.cpp The exported Win32 function, which is the extended stored procedure.
projname.dsp The Visual C++ project file.
projname.cpp A file that includes DLL initialization code.
StdAfx.h An include file for standard system include files, or project-specific include files that are used frequently.
StdAfx.cpp A source file that includes just the standard includes.
Compiling the generated project will generate a DLL, projname.DLL.