Class SelectResults

All Implemented Interfaces:
AutoCloseable, ResultSet, Wrapper

public class SelectResults extends StreamedResults<Binding>
Represents SPARQL SELECT results
  • Constructor Details

    • SelectResults

      public SelectResults(JenaStatement statement, QueryExecution qe, ResultSetPeekable results, boolean commit) throws SQLException
      Creates new select results
      Parameters:
      statement - Statement that created the result set
      qe - Query Execution
      results - SPARQL Results
      commit - Whether a commit is necessary when the results are closed
      Throws:
      SQLException - Thrown if the arguments are invalid
    • SelectResults

      public SelectResults(JenaStatement statement, QueryExecution qe, ResultSet results, boolean commit) throws SQLException
      Creates new select results
      Parameters:
      statement - Statement that created the result set
      qe - Query Execution
      results - SPARQL Results
      commit - Whether a commit is necessary when the results are closed
      Throws:
      SQLException - Thrown if the arguments are invalid
  • Method Details