All Packages  Class Hierarchy

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Index of all Fields and Methods

D

Decrypt(String, byte[], int, int[]). Method in interface db.TableEncrypt
Invoked by InstantDB just after a row is has been read from disk.
delete(). Method in class db.idbTrigger

Deletes this trigger.


E

Encrypt(String, byte[], int, int[]). Method in interface db.TableEncrypt
Invoked by InstantDB just before a row is about to be written to disk.

G

getConnection(). Method in class db.idbTrigger

Finds the connection which activated the current trigger activation.

getEvents(). Method in class db.idbTrigger

Returns the bitmap of events that this trigger is notified of.

getTableName(). Method in class db.idbTrigger

Returns the name of the table that this trigger is monitoring.


I

idbTrigger(String, int). Constructor for class db.idbTrigger

Constructs a new Trigger object.


O

onAdd(Vector, long). Method in class db.idbTrigger

Callback invoked by InstantDB when a row is added to the table being monitored.

onCommit(long). Method in class db.idbTrigger

Callback invoked by InstantDB when a transaction involving the table being monitored is committed.

onDelete(Vector, long). Method in class db.idbTrigger

Callback invoked by InstantDB when a row is deleted from the table being monitored.

onRollback(long). Method in class db.idbTrigger

Callback invoked by InstantDB when a transaction involving the table being monitored is rolled back.

onUpdate(Vector, long). Method in class db.idbTrigger

Callback invoked by InstantDB when a row in the table being monitored is updated.


P

preUpdate(Vector, long). Method in class db.idbTrigger

Callback invoked by InstantDB before a row is updated in the table being monitored.


T

TRIGGER_ON_ADD. Static variable in class db.idbTrigger
Notify the trigger object when a row is added to the database table.
TRIGGER_ON_COMMIT. Static variable in class db.idbTrigger
Notify the trigger object when a transaction involving the database table is committed.
TRIGGER_ON_DELETE. Static variable in class db.idbTrigger
Notify the trigger object when a row is deleted in the database table.
TRIGGER_ON_ROLLBACK. Static variable in class db.idbTrigger
Notify the trigger object when a transaction involving the database table is rolled back.
TRIGGER_ON_UPDATE. Static variable in class db.idbTrigger
Notify the trigger object when an update to the database table takes place.