Oracle® Call Interface Programmer's Guide 11g Release 2 (11.2) Part Number E10646-10 |
|
|
PDF · Mobi · ePub |
Table 20-1 lists the OCI external procedure functions for C that are described in this section.
Table 20-1 External Procedures Functions
Function | Purpose |
---|---|
Allocate memory for the duration of the External Procedure |
|
Get the OCI environment, service context, and error handles |
|
Raise an Exception to PL/SQL |
|
Raise an exception with a message |
Allocates N bytes of memory for the duration of the external procedure.
void * OCIExtProcAllocCallMemory ( OCIExtProcContext *with_context, size_t amount );
The with_context
pointer that is passed to the C external procedure.
See Also:
"With_Context Type"The number of bytes to allocate.
This call allocates amount
bytes of memory for the duration of the call of the external procedure.
Any memory allocated by this call is freed by PL/SQL upon return from the external procedure. The application must not use any kind of free()
function on memory allocated by OCIExtProcAllocCallMemory()
. Use this function to allocate memory for function returns.
A zero return value should be treated as an error.
An untyped (opaque) pointer to the allocated memory.
Example 20-1 Using OCIExtProcAllocCallMemory() to Allocate 1024 Bytes of Memory
text *ptr = (text *)OCIExtProcAllocCallMemory(wctx, 1024)
OCIErrorGet(), OCIMemoryAlloc()
Gets the OCI environment, service context, and error handles.
sword OCIExtProcGetEnv ( OCIExtProcContext *with_context, OCIEnv **envh, OCISvcCtx **svch, OCIError **errh );
The with_context
pointer that is passed to the C external procedure. See "With_Context Type".
Pointer to a variable to store the OCI environment handle.
Pointer to a variable to store the OCI service handle.
Pointer to a variable to store the OCI error handle.
The primary purpose of this function is to allow OCI callbacks to use the database in the same transaction. The OCI handles obtained by this function should be used in OCI callbacks to the database. If these handles are obtained through standard OCI calls, then these handles use a new connection to the database and cannot be used for callbacks in the same transaction. In one external procedure you can use either callbacks or a new connection, but not both.
Example of a call:
OCIEnv *envh; OCISvcCtx *svch; OCIError *errh; ... OCIExtProcGetEnv(ctx,&envh,&svch,&errh);
This function returns OCI_SUCCESS
if the call succeeds; otherwise, it returns OCI_ERROR
.
OCIEnvCreate(), OCIArrayDescriptorAlloc(), OCIHandleAlloc()
Raises an Exception to PL/SQL.
size_t OCIExtProcRaiseExcp ( OCIExtProcContext *with_context, int errnum );
The with_context
pointer that is passed to the C external procedure.
See Also:
"With_Context Type"Oracle Database error number to signal to PL/SQL. The errnum
value must be a positive number and in the range 1 to 32767.
Calling this function signals an exception to PL/SQL. After a successful return from this function, the external procedure must start its exit handling and return to PL/SQL. Once an exception is signaled to PL/SQL, IN/OUT and OUT arguments, if any, are not processed at all.
This function returns OCIEXTPROC_SUCCESS
if the call succeeds. It returns OCIEXTPROC_ERROR
if the call fails.
Raises an exception with a message.
size_t OCIExtProcRaiseExcpWithMsg ( OCIExtProcContext *with_context, int errnum, char *errmsg, size_t msglen );
The with_context
pointer that is passed to the C external procedure.
See Also:
"With_Context Type"Oracle Database error number to signal to PL/SQL. The value of errnum
must be a positive number and in the range 1 to 32767
The error message associated with errnum
.
The length of the error message. Pass zero if errmsg
is a NULL
-terminated string.
This call raises an exception to PL/SQL. In addition, it substitutes the following error message string within the standard Oracle Database error message string.
See Also:
The description of OCIExtProcRaiseExcp()This function returns OCIEXTPROC_SUCCESS
if the call succeeds. It returns OCIEXTPROC_ERROR
if the call fails.