public interface DBBeforeListener
extends EventListener
The event set listener interface for the DBBefore feature. Methods in this event set are called before actions affecting the database or the RowSet cache are performed.
Method | Description |
---|---|
void aboutToChangeRow_delete(DBEvent) | Method called when the a row in the RowSet will be deleted from the database. |
void aboutToChangeRow_insert(DBEvent) | Method called when the a row in the RowSet will be inserted into the database. |
void aboutToChangeRow_update(DBEvent) | Method called when the a row in the RowSet will be updated in the database. |
void aboutToChangeRowSet_deleteRow(DBEvent) | Method called when the cache of the RowSet will change by having a row deleted from it. |
void aboutToChangeRowSet_execute(DBEvent) | Method called when the cache of the RowSet will change by being filled upon execution. |
void aboutToChangeRowSet_fetchRow(DBEvent) | Method called when the cache of the RowSet will change by having one or more rows fetched into it. |
void aboutToChangeRowSet_newRow(DBEvent) | Method called when the cache of the RowSet will change by having a new empty row added to it. |
public void aboutToChangeRow_delete(DBEvent event)Method called when the a row in the RowSet will be deleted from the database.
The modifier property of the event indicates which row will be deleted.
- Parameters
- event - DBEvent
public void aboutToChangeRow_insert(DBEvent event)Method called when the a row in the RowSet will be inserted into the database.
The modifier property of the event indicates which row will be inserted.
- Parameters
- event - DBEvent
public void aboutToChangeRow_update(DBEvent event)Method called when the a row in the RowSet will be updated in the database.
The modifier property of the event indicates which row will be updated.
- Parameters
- event - DBEvent
public void aboutToChangeRowSet_deleteRow(DBEvent event)Method called when the cache of the RowSet will change by having a row deleted from it.
The modifier property of the event indicates which row will be deleted.
- Parameters
- event - DBEvent
public void aboutToChangeRowSet_execute(DBEvent event)Method called when the cache of the RowSet will change by being filled upon execution.
- Parameters
- event - DBEvent
public void aboutToChangeRowSet_fetchRow(DBEvent event)Method called when the cache of the RowSet will change by having one or more rows fetched into it.
- Parameters
- event - DBEvent
public void aboutToChangeRowSet_newRow(DBEvent event)Method called when the cache of the RowSet will change by having a new empty row added to it.
The modifier property of the event indicates which row will be added.
- Parameters
- event - DBEvent