SQL_ACTION_TYPES
Overview
The SQL_ACTION_TYPES class defines script constants for SQL data manipulation actions.
Constants Summarized
Type
Name
Summary
Constants Detailed
DELETE_ACTION
Constant for the "delete" SQL action.
Type Number
Sample
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
Constant for the "insert" SQL action.
Type Number
Sample
NO_ACTION
Constant expressing that no SQL action took place.
Type Number
Sample
SELECT_ACTION
Constant for the "select" SQL action.
Type Number
Sample
UPDATE_ACTION
Constant for the "update" SQL action.
Type Number
Sample
Last updated
Was this helpful?