Oracle JDBC API Reference
11g Release 2 ("11.2.0.3.0")

oracle.jdbc
Enum OracleConnection.CommitOption

java.lang.Object
  extended by java.lang.Enum<OracleConnection.CommitOption>
      extended by oracle.jdbc.OracleConnection.CommitOption
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OracleConnection.CommitOption>
Enclosing interface:
OracleConnection

public static enum OracleConnection.CommitOption
extends java.lang.Enum<OracleConnection.CommitOption>


Enum Constant Summary
NOWAIT
          "No wait" commit option.
WAIT
          "Wait" commit option.
WRITEBATCH
          "Batch logging" commit option.
WRITEIMMED
          "Batch logging" commit option.
 
Method Summary
 int getCode()
          Implementation detail (for internal use only).
static OracleConnection.CommitOption valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OracleConnection.CommitOption[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

WRITEBATCH

public static final OracleConnection.CommitOption WRITEBATCH
"Batch logging" commit option.

No I/O is issued by LGWR ((Log Writer Process) to write the in-memory redo buffers of the transaction to the online redo logs. BATCH means that the LGWR batches the redo buffers before initiating I/O for the entire batch.

By default (if you don't use this option), the redo buffers of the transaction are written out immediately.


WRITEIMMED

public static final OracleConnection.CommitOption WRITEIMMED
"Batch logging" commit option.

Force the default: the redo buffers of the transaction are written out immediately.


WAIT

public static final OracleConnection.CommitOption WAIT
"Wait" commit option. Use this option to force the default: the commit does not return until the in-memory redo buffers corresponding to the transaction are written in the (persistent) online redo logs.


NOWAIT

public static final OracleConnection.CommitOption NOWAIT
"No wait" commit option.

LGWR is requested to write the redo for the commit to the online redo logs, but the commit returns without waiting for the buffers to be written to the online redo logs. NOWAIT means that the commit returns to the user before the in-memory redo buffers are flushed to the online redo logs.

By default (if you don't use this option), the commit does not return until the in-memory redo buffers corresponding to the transaction are written in the (persistent) online redo logs.

Method Detail

values

public static final OracleConnection.CommitOption[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(OracleConnection.CommitOption c : OracleConnection.CommitOption.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static OracleConnection.CommitOption valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

getCode

public final int getCode()
Implementation detail (for internal use only).


Oracle JDBC API Reference
11g Release 2 ("11.2.0.3.0")

Copyright © 1998, 2007, Oracle. All rights reserved.