|
2004.04.29 |
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object
|
+--com.jdc.lang.Object
|
+--com.jdc.rdb.sql.SQLClause
|
+--com.jdc.rdb.sql.dml.DMLClause
|
+--com.jdc.rdb.sql.dml.clause.With
With represents a Insert,
Update, or Delete
SQL statement WITH clause. The WITH
clause specifies the isolation level used when locating the rows to be inserted,
updated, or deleted. Valid isolation levels are:
RR - Repeatable ReadRS - Read StabilityCS - Cursor StabilityUR - Uncommitted Read
Insert,
Update,
Delete,
IsolationLevel,
Serialized Form| Field Summary |
| Fields inherited from class com.jdc.rdb.sql.dml.DMLClause |
sqlClause |
| Fields inherited from class com.jdc.lang.Object |
string |
| Constructor Summary | |
With()
Constructs a new With clause object. |
|
With(String isolationLevel)
Constructs a new With clause object for the specified Database
isolation level. |
|
| Method Summary | |
String |
getKeyword()
Returns the With clause keyword. |
String |
getValue()
Returns the With clause value. |
With |
setIsolationLevel(String isolationLevel)
Sets the Database isolation level to use when
locating rows for SQL statement execution. |
String |
toString()
Returns a String representation of this With clause. |
| Methods inherited from class com.jdc.rdb.sql.dml.DMLClause |
getKeyword |
| Methods inherited from class com.jdc.rdb.sql.SQLClause |
contains, setKeyword, setValue |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public With()
With clause object.
public With(String isolationLevel)
With clause object for the specified Database
isolation level. Refer to the IsolationLevel class for a list
of valid isolation levels.
SQLInvalidException - An invalid isolation level is specified.setIsolationLevel(String)| Method Detail |
public String getKeyword()
With clause keyword.
getKeyword in class SQLClauseWith clause keyword.public String getValue()
With clause value.
getValue in class SQLClauseWith clause value.public With setIsolationLevel(String isolationLevel)
Database isolation level to use when
locating rows for SQL statement execution.
Refer to the IsolationLevel class for a list of valid isolation
levels.
With clause object.
SQLInvalidException - An invalid isolation level is specified.public String toString()
String representation of this With clause.
toString in interface InsertClausetoString in class SQLClauseString representation of this With clause.
|
2004.04.29 |
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||