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

ORA_FFI.Find_Library

Description

Locates and returns the handle for the specified foreign library name. The library must previously have been registered with Ora_Ffi.Load_Library.

Syntax


FUNCTION Ora_Ffi.Find_Library (libname VARCHAR2)
RETURN libHandleType;

Parameters

libname The name of the library

Returns

A handle to the specified foreign library.

Example


/* Find foreign library handle for 
   a given library name */

BEGIN
   ...
   libhandle := ora_ffi.find_library
            ('mylib.dll');
   ...
END;