Skip Headers

Oracle® Objects for OLE C++ Class Library Developer's Guide
10g Release 1 (10.1)

Part Number B10119-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Master Index
Master Index
Go to Feedback page
Feedback

SetAutoCommit Method

Applies To

ODatabase

Description

Sets the autocommit mode of the ODatabase object.

Usage

oresult SetAutoCommit(bool autocommit)

Arguments

autocommit
Specifies whether the autocommit mode is set to True or False.
Remarks

If autocommit is set to True, all the data operations that modify data in the database are automatically committed after the statement is executed.

If autocommit is set to False, you need to use the ODatabase transaction methods (BeginTrans, CommitTrans, and Rollback) or SQL statements to control transactions.