Locates and returns the handle for the specified foreign library name. The library must previously have been registered with Ora_Ffi.Load_Library.
FUNCTION Ora_Ffi.Find_Library (libname VARCHAR2)
RETURN libHandleType;
libname | The name of the library |
A handle to the specified foreign library.
/* Find foreign library handle for
a given library name */
BEGIN
...
libhandle := ora_ffi.find_library
('mylib.dll');
...
END;