Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

OracleLob::BeginBatch Method (OracleLobOpenMode)

 

Prevents server-side triggers from firing while performing multiple read and write operations in the specified access mode.

Namespace:   System.Data.OracleClient
Assembly:  System.Data.OracleClient (in System.Data.OracleClient.dll)

public:
void BeginBatch(
	OracleLobOpenMode mode
)

Parameters

mode
Type: System.Data.OracleClient::OracleLobOpenMode

Mode (one of the OracleLobOpenMode values) in which the LOB can be accessed between this BeginBatch call and the corresponding EndBatch call.

Exception Condition
InvalidOperationException

The connection is closed.

ObjectDisposedException

The object was closed or disposed.

OracleException

An Oracle error has occurred.

To write to the LOB, you must have retrieved the LOB using the FOR UPDATE clause in the SQL SELECT statement, and you must have a local transaction started.

Calling BeginBatch more than one time within the same transaction currently throws the Oracle "ORA-22293: LOB already opened in the same transaction" error. In addition, if you obtain the LOB using another OracleDataReader, and the original caller has not called the EndBatch method, the same error is generated. Therefore, you must call the EndBatch method when you are finished using the OracleLob.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft