1.

What Is Cftransaction?

Answer»

For enterprise database management systems that SUPPORT transaction processing, INSTRUCTS the database management SYSTEM to treat multiple database operations as a single transaction. It provides database commit and rollback processing. See the documentation for your database management system to determine whether it SUPPORTS SQL transaction processing.
Syntax
isolation = "read_uncommitted|read_committed|repeatable_read"
SAVEPOINT = "savepoint name">

For enterprise database management systems that support transaction processing, instructs the database management system to treat multiple database operations as a single transaction. It provides database commit and rollback processing. See the documentation for your database management system to determine whether it supports SQL transaction processing.
Syntax
isolation = "read_uncommitted|read_committed|repeatable_read"
savepoint = "savepoint name">



Discussion

No Comment Found