ORA_FFI.FIND_LIBRARY
built-in functionThis function 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;
Parameter |
Description |
|
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;
About the ORA_FFI
built-in package
Copyright © 1984, 2005, Oracle. All rights reserved.