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

ORA_FFI.LIBHANDLETYPE type

This type specifies a handle to a foreign function. Use ORA_FFI.FIND_FUNCTION to obtain the handle.

Syntax


TYPE ORA_FFI.LIBHANDLETYPE;

Example


/* This example uses ORA_FFI.LIBHANDLETYPE */

PACKAGE test is
  /* Specify that testlib_lhandle 
  is a library handle varible type */
    testlib_lhandle ORA_FFI.LIBHANDLETYPE;
  ...
END;
  
PACKAGE BODY test IS
 PROCEDURE register_libs IS
  BEGIN
   testlib_lhandle := ORA_FFI.LOAD_LIBRARY
   ('C:\libdir\','test.dll');
  ...
  END;
  ...
END;

See also

About the ORA_FFI built-in package

ORA_FFI built-in package