|
Oracle Fusion Middleware Oracle WebLogic Server API Reference 11g Release 1 (10.3.3) Part Number E13941-03 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface WLConnection
Contains methods to interact with the Statement Cache
Method Summary | |
---|---|
boolean |
clearCallableStatement(String sql)
Clears a callable statement from the Statement Cache |
boolean |
clearCallableStatement(String sql,
int resType,
int resConcurrency)
Clears a callable statement from the Statement Cache |
boolean |
clearPreparedStatement(String sql)
Clears a prepared statement from the Statement Cache |
boolean |
clearPreparedStatement(String sql,
int resType,
int resConcurrency)
Clears a prepared statement from the Statement Cache |
void |
clearStatementCache()
Clears the statement cache. |
String |
getPoolName()
Returns the name of the connection pool to which this connection belongs to. |
Connection |
getVendorConnection()
Returns the underlying physical connection (the vendor connection) from a pooled database connection (a logical connection). |
boolean |
isValid()
This method equals to isValid(15). |
boolean |
isValid(int timeout)
Returns true if connection is still valid. |
void |
setFailed()
Force this connection to be destroyed by connection pool |
Method Detail |
---|
void clearStatementCache() throws SQLException
SQLException
- - if a database access error occursConnection getVendorConnection() throws SQLException
SQLException
- - if a database access error occursboolean clearCallableStatement(String sql) throws SQLException
sql
- - an SQL statement that may contain one or more '?' parameter
placeholders. Typically this statement is a JDBC function call
escape string.
SQLException
- - if a database access error occursboolean clearCallableStatement(String sql, int resType, int resConcurrency) throws SQLException
sql
- - an SQL statement that may contain one or more '?' parameter
placeholders. Typically this statement is a JDBC function call
escape string.resSetType
- - a result set type; one of
ResultSet.TYPE_FORWARD_ONLY, ResultSet.TYPE_SCROLL_INSENSITIVE,
or ResultSet.TYPE_SCROLL_SENSITIVEresSetConcurrency
- - a concurrency type; one of
ResultSet.CONCUR_READ_ONLY or ResultSet.CONCUR_UPDATABLE
SQLException
- - if a database access error occursboolean clearPreparedStatement(String sql) throws SQLException
sql
- - an SQL statement that may contain one or more '?'
IN parameter placeholders
SQLException
- - if a database access error occursboolean clearPreparedStatement(String sql, int resType, int resConcurrency) throws SQLException
sql
- - an SQL statement that may contain one or more '?'
IN parameter placeholdersresSetType
- - a result set type; one of
ResultSet.TYPE_FORWARD_ONLY, ResultSet.TYPE_SCROLL_INSENSITIVE,
or ResultSet.TYPE_SCROLL_SENSITIVEresSetConcurrency
- - a concurrency type; one of
ResultSet.CONCUR_READ_ONLY or ResultSet.CONCUR_UPDATABLE
SQLException
- - if a database access error occursString getPoolName()
void setFailed() throws SQLException
SQLException
- - if a connection pool error happenboolean isValid(int timeout) throws SQLException
timeout
- - The time in seconds to wait for the database operation
used to validate the connection to complete.
A value of 0 indicates a timeout is not applied to the database operation.
SQLException
- - if the value supplied for timeout is less then 0boolean isValid() throws SQLException
SQLException
|
Copyright 1996, 2010, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Oracle Fusion Middleware Oracle WebLogic Server 10.3.3 API Reference 11g Release 1 (10.3.3) Part Number E13941-03 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |