Interface ProcedureOutputs

All Superinterfaces:
AutoCloseable

public interface ProcedureOutputs extends AutoCloseable
Represents the outputs of executing a JDBC statement. Provides support for accessing result-sets, update counts, and registered output parameters.
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
     
    Retrieve the current Output object.
    Retrieve the value of an OUTPUT parameter by the name position under which the parameter was registered.
    Retrieve the value of an OUTPUT parameter by the name under which the parameter was registered.
    <T> T
    Retrieve the value of an OUTPUT parameter by the parameter's registration memento.
    boolean
    Go to the next Output object (if any), returning an indication of whether there is another.
    void
    Eagerly release any held resources.
  • Method Details