SQL_ACTION_TYPES
Overview
Constants Summarized
Type
Name
Summary
Constants Detailed
DELETE_ACTION
if (action == SQL_ACTION_TYPES.INSERT_ACTION)
application.output("it was an insert");
else if (action == SQL_ACTION_TYPES.DELETE_ACTION)
application.output("it was a delete");
else if (action == SQL_ACTION_TYPES.UPDATE_ACTION)
application.output("it was an update");
else if (action == SQL_ACTION_TYPES.SELECT_ACTION)
application.output("it was a select");
else if (action == SQL_ACTION_TYPES.NO_ACTION)
application.output("it was nothing");
else
application.output("what was this?");INSERT_ACTION
NO_ACTION
SELECT_ACTION
UPDATE_ACTION
Last updated
Was this helpful?