Skip to main content

Connections

Last updated 18/07/2024


EventExecutesDescription
Do Before InsertServerExecutes before the new record is committed into the database, the context contains an object called
new
which contains the new record being inserted in the database.
Do After InsertServerExecutes after a new record has been committed into the database.
Do Before UpdateServerExecutes before the updated record is committed into the database. The context contains two objects called
old
and
new
which contain the old record currently existing in the database, and the new updated record being updated in the database.
Do After UpdateServerExecutes after the updated record has been committed into the database.
Do Before DeleteServerExecutes before the record is deleted from the database, the context contains an object called
old
which contains the old record being deleted from the database.
Do After DeleteServerExecutes after the record has been deleted from the database.