InterviewSolution
| 1. |
What Is An Apex Transaction? |
|
Answer» An Apex transaction REPRESENTS a SET of operations that are executed as a single UNIT. The operations here include the DML operations which are responsible for querying records. All the DML operations in a transaction either complete SUCCESSFULLY, or if an error occurs even in saving a single record, then the entire transaction is rolled back. An Apex transaction represents a set of operations that are executed as a single unit. The operations here include the DML operations which are responsible for querying records. All the DML operations in a transaction either complete successfully, or if an error occurs even in saving a single record, then the entire transaction is rolled back. |
|