Interface ResultSetHandler<T>

    • Method Detail

      • handle

        T handle​(ResultSet resultSet)
          throws SQLException
        Turn the ResultSet into an Object.
        Parameters:
        resultSet - The ResultSet to handle. It has not been touched before being passed to this method.
        Returns:
        An Object initialized with ResultSet data. It is legal for implementations to return null if the ResultSet contained 0 rows.
        Throws:
        SQLException - if a database access error occurs