org.firebirdsql.jdbc
Interface FBObjectListener.FetcherListener
- All Known Implementing Classes:
- AbstractResultSet
- Enclosing class:
- FBObjectListener
- public static interface FBObjectListener.FetcherListener
Method Summary |
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. |
fetcherClosed
public void fetcherClosed(org.firebirdsql.jdbc.FBFetcher fetcher)
throws java.sql.SQLException
- Notify listener that underlying fetcher is closed.
- Parameters:
fetcher
- fetcher that was closed.
allRowsFetched
public void allRowsFetched(org.firebirdsql.jdbc.FBFetcher fetcher)
throws java.sql.SQLException
- Notify listener that underlying fetcher fetched all rows.
- Parameters:
fetcher
- fetcher that fetched all rows.
rowChanged
public void rowChanged(org.firebirdsql.jdbc.FBFetcher fetcher,
byte[][] newRow)
throws java.sql.SQLException
- Notify listener that underlying row was changed.
- Parameters:
fetcher
- instance of FBFetcher
that caused this event.newRow
- new row.
Copyright © 2001 David Jencks and other authors. All rights reserved.