Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
More OCI Relational Functions, 106 of 106
Register a user-created callback function
sword OCIUserCallbackRegister ( dvoid *hndlp, ub4 type, dvoid *ehndlp, OCIUserCallback (callback) (/*_ dvoid *ctxp, dvoid *hndlp, ub4 type, ub4 fcode, ub1 when, sword returnCode, ub4 *errnop, va_list arglist _*/), dvoid *ctxp, ub4 fcode, ub4 when OCIUcb *ucbDesc );
This is the handle whose type is specified by the type parameter.
The handle type. The valid handle type is:
fcode
made on the environment handle.The OCI error or environment handle. If there is an error, it is recorded in ehndlp
and this function returns OCI_ERROR. Diagnostic information can be obtained by calling OCIErrorGet()
. Note that the because an error handle is not available within OCIEnvCallback, so the environment handle is passed in as a ehndlp
.
A callback function pointer. The variable argument list in the OCIUserCallback function prototype are the parameters passed to the OCI function. The typedef for OCIUserCallback is described below later.
If an entry callback returns anything other than OCI_CONTINUE, then the return code is passed to the subsequent entry or replacement callback, if there is one. If this is the last entry callback and there is no replacement callback, then the OCI code is executed and the return code is ignored.
If a replacement callback returns anything other than OCI_CONTINUE, then subsequent replacement callbacks and the OCI code are bypassed, and processing jumps to the exit callbacks.
If the exit callback returns anything other than OCI_CONTINUE, then that returned value is returned by the OCI function; otherwise, the return value from the OCI code or the replacement callback (if the replacement callback did not return OCI_CONTINUE and essentially bypassed the OCI code) is returned by the call.
If a null value is passed in for callback, then the callback is removed for the when
value and the specified handle. This is the way to de-register a callback for a given ucbDesc
value, including the null ucbDesc.
A context pointer for the callback.
A unique function code of an OCI function. These are listed in Table 16-8, "OCI Function Codes".
Defines when the callback is invoked. Valid modes are:
An OCI provided descriptor. This descriptor is passed by OCI in the environment callback. It contains the priority at which the callback would be registered at. If the ucbDesc
parameter is specified as null, then this callback has the highest priority.
User callbacks registered statically (as opposed to those registered dynamically in a package) use a null descriptor as they do not have a ucb descriptor to use.
This function is used to register a user-created callback functions.s with the OCI environment.
See Also:
For a more complete discussion, see "User-Defined Callback Functions". |
Such callbacks allow an application to:
The OCI supports these kinds of callbacks: entry callbacks, replacement callbacks, and exit callbacks.
The three types of callbacks are identified by the modes OCI_UCBTYPE_ENTRY, OCI_UCBTYPE_REPLACE, and OCI_UCBTYPE_EXIT.
The control flow now is:
Entry callbacks are executed when a program enters an OCI function.
Replacement callbacks are executed after entry callbacks. If the replacement callback returns a value of OCI_CONTINUE, then subsequent replacement callbacks or the normal OCI-specific code is executed. If the callback returns anything other than OCI_CONTINUE, then subsequent replacement callbacks and the OCI code do not execute.
After an OCI function successfully executes, or after a replacement callback returns something other than OCI_CONTINUE, program control transfers to the exit callback (if one is registered).
If a replacement or exit callback returns anything other than OCI_CONTINUE, then the return code from the callback is returned from the associated OCI call.
To find out the callback that is registered for the handle, you can use OCIUserCallbackGet()
.
The prototype of the OCIUserCallback
typedef is:
typedef sword (*OCIUserCallback) (dvoid *ctxp, dvoid *hndlp, ub4 type, ub4 fcode, ub4 when, sword returnCode, ub4 *errnop, va_list arglist );
The parameters to the OCIUserCallback function prototype are:
The context passed in as ctxp in the register callback function.
This is the handle whose type is specified in the type parameter. It is the handle on which the callback is invoked. Because we only allow a type of OCI_HTYPE_ENV, therefore, the environment handle, env
, would be passed-in here.
The type registered for the hndlp
. The valid handle type is:
fcode
made on the environment handle.The function code of the OCI call. These are listed in Table 16-8, "OCI Function Codes". Please note that callbacks can be registered for only the OCI calls listed in Table 16-3, "Advanced Queuing and Publish-Subscribe Functions".
The when value of the callback.
This is the return code from the previous callback or the OCI code. For the first entry callback, OCI_SUCCESS will always be passed in. For the subsequent callbacks, the return code from the OCI code or the previous callback is passed in.
When the first entry callback is called, the input value of *errnop
is 0. If the callback is returning any value other than an OCI_CONTINUE, then it must also set an error number in *errnop
. This value is the set in the error handle passed in the OCI call.
For all subsequent callbacks, the input value of *errnop
is the value of error number in the error handle. Therefore, if the previous callback did not return OCI_CONTINUE, then the out value of *errnop
from the previous callback would be the one in the error handle, and that value would be passed in here to the subsequent callback. If, on the other hand, the previous callback returned OCI_CONTINUE, then whatever value that is in the error handle would be passed in here.
Note that if a non-Oracle error number is returned in *errnop
, then a callback must also be registered for the OCIErrorGet()
function to return appropriate text for the error number.
These are the parameters to the OCI call passed in here as variable number of arguments. They should be de-referenced using va_arg
, as illustrated in the user callback demonstration programs.
See Also:
See Appendix B, "OCI Demonstration Programs" for a list of the available demonstration programs. |
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|