org.firebirdsql.jdbc
Interface FBObjectListener.FetcherListener
- FBResultSet
public static interface FBObjectListener.FetcherListener
void | allRowsFetched(org.firebirdsql.jdbc.FBFetcher fetcher) - Notify listener that underlying fetcher fetched all rows.
|
void | fetcherClosed(org.firebirdsql.jdbc.FBFetcher fetcher) - Notify listener that underlying fetcher is closed.
|
void | rowChanged(org.firebirdsql.jdbc.FBFetcher fetcher, byte[][] newRow) - Notify listener that underlying row was changed.
|
allRowsFetched
public void allRowsFetched(org.firebirdsql.jdbc.FBFetcher fetcher)
throws SQLException
Notify listener that underlying fetcher fetched all rows.
fetcher
- fetcher that fetched all rows.
fetcherClosed
public void fetcherClosed(org.firebirdsql.jdbc.FBFetcher fetcher)
throws SQLException
Notify listener that underlying fetcher is closed.
fetcher
- fetcher that was closed.
rowChanged
public void rowChanged(org.firebirdsql.jdbc.FBFetcher fetcher,
byte[][] newRow)
throws SQLException
Notify listener that underlying row was changed.
fetcher
- instance of FBFetcher
that caused this event.newRow
- new row.
Copyright B) 2001 David Jencks and other authors. All rights reserved.