Class ResultWrapper

java.lang.Object
org.postgresql.jdbc.ResultWrapper

public class ResultWrapper extends Object
Helper class that storing result info. This handles both the ResultSet and no-ResultSet result cases with a single interface for inspecting and stepping through them.
  • Constructor Details

    • ResultWrapper

      public ResultWrapper(@Nullable ResultSet rs)
    • ResultWrapper

      public ResultWrapper(long updateCount, long insertOID)
  • Method Details

    • getResultSet

      @Pure public @Nullable ResultSet getResultSet()
    • getUpdateCount

      public long getUpdateCount()
    • getInsertOID

      public long getInsertOID()
    • getNext

      public @Nullable ResultWrapper getNext()
    • append

      public void append(ResultWrapper newResult)