org.springframework.jdbc.core
Interface ResultReader

All Superinterfaces:
RowCallbackHandler
All Known Implementing Classes:
MappingSqlQueryWithParameters.ResultReaderImpl, SqlParameter.ResultReaderStoredProcImpl, UpdatableSqlQuery.ResultReaderImpl

public interface ResultReader
extends RowCallbackHandler

Extension of RowCallbackHandler interfaces that saves the accumulated results as a List.

Version:
$Id: ResultReader.java,v 1.4 2004/03/18 02:46:08 trisberg Exp $
Author:
Rod Johnson

Method Summary
 java.util.List getResults()
          Return all results, disconnected from the JDBC ResultSet.
 
Methods inherited from interface org.springframework.jdbc.core.RowCallbackHandler
processRow
 

Method Detail

getResults

public java.util.List getResults()
Return all results, disconnected from the JDBC ResultSet. Never returns null; returns the empty collection if there were no results.



Copyright (C) 2003-2004 The Spring Framework Project.