org.jooq
Interface LoaderError


public interface LoaderError

An error that occurred during loading. Errors are only handled when they were caused by DataAccessException's. IOException's and other problems will abort loading fatally.

Author:
Lukas Eder

Method Summary
 DataAccessException exception()
          The underlying DataAccessException that caused the error
 Query query()
          The query whose execution failed
 String[] row()
          The row data that caused the error
 int rowIndex()
          The processed row index starting with 0 that caused the error
 

Method Detail

exception

DataAccessException exception()
The underlying DataAccessException that caused the error


rowIndex

int rowIndex()
The processed row index starting with 0 that caused the error


row

String[] row()
The row data that caused the error


query

Query query()
The query whose execution failed



Copyright © 2012. All Rights Reserved.