A script-enabled browser is required for this page to function properly.

ORA_FFI.Funchandletype

Description

Specifies a handle to a foreign function. You can use Ora_Ffi.Find_Function to obtain the handle.

Syntax


TYPE Ora_Ffi.Funchandletype;

Example


/* This example uses Ora_Ffi_Funchandletype */

PROCEDURE define_c_funcs IS
   getresult_fhandle  ora_ffi.funcHandleType;
   foo_fhandle        ora_ffi.funcHandleType;
BEGIN
   /* Register the info for function getresult */
   getresult_fhandle := ora_ffi.register_function
             (testlib_lhandle, 'getresult');
   ...
   /* Register the info for function foo */
   foo_fhandle := ora_ffi.register_function
             (testlib_lhandle,'foo'); 
   ...
END;