|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.stc.connector.webservice.db.DBWebServiceRequest
This class represents the base web service request object for the database web service.
Method Summary | |
boolean |
getAutoCommit()
Gets the AutoCommit mode of the connection. |
java.lang.String |
getCatalog()
Gets the catalog name of the connection. |
boolean |
getConcurrencyToReadOnly()
Get concurrency type; determines if the concurrency is set to read only. |
boolean |
getConcurrencyToUpdatable()
Get concurrency type; determines if the concurrency is set to updatable. |
boolean |
getScrollTypeToForwardOnly()
Gets the result set type; determines if scroll is set to forward only. |
boolean |
getScrollTypeToScrollInsensitive()
Gets the result set type; determines if scroll is set to insensitive. |
boolean |
getScrollTypeToScrollSensitive()
Gets the result set type; determines if scroll is set to sensitive. |
int |
getTransactionIsolation()
Gets the transaction isolation level for the connection. |
void |
setAutoCommit(boolean bAuto)
Sets the AutoCommit mode of the connection. |
void |
setCatalog(java.lang.String sCatalog)
Sets the catalog name of the connection. |
void |
setConcurrencyToReadOnly(boolean bVal)
Set concurrency type of the session to read only. |
void |
setConcurrencyToUpdatable(boolean bVal)
Set concurrency type of the session to updatable. |
void |
setScrollTypeToForwardOnly(boolean bVal)
Set result set type of the session to be forward only. |
void |
setScrollTypeToScrollInsensitive(boolean bVal)
Set result set type of the session to be insensitive. |
void |
setScrollTypeToScrollSensitive(boolean bVal)
Set result set type of the session to be sensitive. |
void |
setTransactionIsolation(int iLevel)
Sets the transaction isolation level for the connection. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
public boolean getAutoCommit()
public java.lang.String getCatalog()
public boolean getConcurrencyToReadOnly()
public boolean getConcurrencyToUpdatable()
public boolean getScrollTypeToForwardOnly()
public boolean getScrollTypeToScrollInsensitive()
public boolean getScrollTypeToScrollSensitive()
public int getTransactionIsolation()
public void setAutoCommit(boolean bAuto)
bAuto
- a true value will set the connection to be in AutoCommit
mode; false otherwise.
void
- None.
public void setCatalog(java.lang.String sCatalog)
sCatalog
- the desired catalog name.
void
- None.
public void setConcurrencyToReadOnly(boolean bVal)
bVal
- Set to true for read only; false otherwise.
void
- None.
public void setConcurrencyToUpdatable(boolean bVal)
bVal
- Set to true for updatable; false otherwise.
void
- None.
public void setScrollTypeToForwardOnly(boolean bVal)
bVal
- Set to true for scroll forward only; false otherwise.
void
- None.
public void setScrollTypeToScrollInsensitive(boolean bVal)
bVal
- Set to true for scroll insensitive; false otherwise.
void
- None.
public void setScrollTypeToScrollSensitive(boolean bVal)
bVal
- Set to true for scroll sensitive; false otherwise.
void
- None.
public void setTransactionIsolation(int iLevel)
iLevel
- a transaction isolation value: TRANSACTION_NONE,
TRANSACTION_READ_UNCOMMITTED, TRANSACTION_READ_COMMITTED,
TRANSACTION_REPEATABLE_READ, TRANSACTION_SERIALIZABLE.
void
- None.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright 2006 by Sun Microsystems, Inc. All Rights Reserved.