MLE Foreign Function Interface (FFI): API for calling PL/SQL functionality directly(mle-js-plsql-ffi)
    Preparing search index...

    Interface DBArgument

    This interface represents an argument for a PL/SQL call. It can act as a value holder for arguments that have an OUT value. It can also act as an extra information store about the given values. This could be the type, maxSize, direction or maxArraySize.

    interface DBArgument {
        val: any;
    }
    Index

    Properties

    Properties

    val: any

    The JavaScript value of the PL/SQL argument.