!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

E:\oracle\product\10.2.0\client_2\sqlj\doc\runtime\javadoc\oracle\sqlj\runtime\   drwxrwxrwx
Free 4.94 GB of 239.26 GB (2.06%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     OracleSqljConnectionCacheImpl.html (24.79 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
: Class OracleSqljConnectionCacheImpl

oracle.sqlj.runtime
Class OracleSqljConnectionCacheImpl

java.lang.Object
  |
  +--oracle.jdbc.pool.OracleDataSource
        |
        +--oracle.jdbc.pool.OracleConnectionCacheImpl
              |
              +--oracle.sqlj.runtime.OracleSqljConnectionCacheImpl
Direct Known Subclasses:
SqljConnCacheBean

public class OracleSqljConnectionCacheImpl
extends oracle.jdbc.pool.OracleConnectionCacheImpl
implements SqljDataSource

OracleSqljConnectionCacheImpl extends the JDBC data source OracleConnectionCacheImpl with ConnectionContextFactory APIs, which provide convinent ways of obtaining connection context within SQLJ programs. This interface requires Java 2 Enterprise Edition (J2EE).

See Also:
Serialized Form

Fields inherited from class oracle.jdbc.pool.OracleConnectionCacheImpl
_DEFAULT_MAX_LIMIT, _DEFAULT_MIN_LIMIT, _MAX_LIMIT, _MIN_LIMIT, DEFAULT_CACHE_TIMEOUT, DEFAULT_FIXED_WAIT_IDLE_TIME, DEFAULT_THREAD_INTERVAL, DYNAMIC_SCHEME, FIXED_RETURN_NULL_SCHEME, FIXED_WAIT_SCHEME, m_activeSize, m_cacheFixedWaitTimeOut, m_cacheInactivityTimeOut, m_cacheScheme, m_cacheSize, m_cacheTTLTimeOut, m_cpds, m_fixedWaitIdleTime, m_ocel, m_stmtCacheSize, m_stmtClearMetaData, m_threadInterval, m_timeOutThread
 
Fields inherited from class oracle.jdbc.pool.OracleDataSource
m_databaseName, m_dataSourceName, m_description, m_driverType, m_explicitCachingEnabled, m_implicitCachingEnabled, m_maxStatements, m_networkProtocol, m_password, m_portNumber, m_pw, m_serverName, m_serviceName, m_timeout, m_tnsentry, m_url, m_user
 
Constructor Summary
OracleSqljConnectionCacheImpl()
           Default Constructor.
OracleSqljConnectionCacheImpl(oracle.jdbc.pool.OracleConnectionPoolDataSource ds)
           Create an OracleSqljConnectionCacheImpl with the given ConnectionPoolDataSource from which PooledConnections have to created.
 
Method Summary
 ConnectionContext getContext(java.lang.Class ctxClass)
          Returns an instance of ctxClass.
 ConnectionContext getContext(java.lang.Class ctxClass, boolean autoCommit)
          Returns an instance of ctxClass.
 ConnectionContext getContext(java.lang.Class ctxClass, java.lang.String user, java.lang.String password)
          Returns an instance of ctxClass.
 ConnectionContext getContext(java.lang.Class ctxClass, java.lang.String user, java.lang.String password, boolean autoCommit)
          Returns an instance of ctxClass.
 DefaultContext getDefaultContext()
          Returns a DefaultContext instance.
 DefaultContext getDefaultContext(boolean autoCommit)
          Returns a DefaultContext instance.
 DefaultContext getDefaultContext(java.lang.String user, java.lang.String password)
          Returns a DefaultContext instance.
 DefaultContext getDefaultContext(java.lang.String user, java.lang.String password, boolean autoCommit)
          Returns a DefaultContext instance.
 
Methods inherited from class oracle.jdbc.pool.OracleConnectionCacheImpl
clearWarnings, close, closePooledConnection, closeSingleConnection, getActiveSize, getCacheFixedWaitIdleTime, getCacheFixedWaitTimeout, getCacheInactivityTimeout, getCacheScheme, getCacheSize, getCacheTimeToLiveTimeout, getConnection, getConnection, getMaxLimit, getMinLimit, getPooledConnection, getReference, getStmtCacheSize, getThreadWakeUpInterval, getWarnings, reusePooledConnection, setCacheFixedWaitIdleTime, setCacheFixedWaitTimeout, setCacheInactivityTimeout, setCacheScheme, setCacheScheme, setCacheTimeToLiveTimeout, setConnectionPoolDataSource, setMaxLimit, setMinLimit, setStmtCacheSize, setStmtCacheSize, setThreadWakeUpInterval
 
Methods inherited from class oracle.jdbc.pool.OracleDataSource
addRefProperties, getDatabaseName, getDataSourceName, getDescription, getDriverType, getExplicitCachingEnabled, getImplicitCachingEnabled, getLoginTimeout, getLogWriter, getMaxStatements, getNetworkProtocol, getPassword, getPortNumber, getServerName, getServiceName, getTNSEntryName, getURL, getUser, setDatabaseName, setDataSourceName, setDescription, setDriverType, setExplicitCachingEnabled, setImplicitCachingEnabled, setLoginTimeout, setLogWriter, setMaxStatements, setNetworkProtocol, setPassword, setPortNumber, setServerName, setServiceName, setTNSEntryName, setURL, setUser, trace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OracleSqljConnectionCacheImpl

public OracleSqljConnectionCacheImpl()
                              throws java.sql.SQLException

Default Constructor. Should have an explicit call to set the URL, User, Password and other DataSource details. A ConnectionPoolDataSource is created with these options from which PooledConnections can be created.

Throws:
java.sql.SQLException - error creating Cache

OracleSqljConnectionCacheImpl

public OracleSqljConnectionCacheImpl(oracle.jdbc.pool.OracleConnectionPoolDataSource ds)
                              throws java.sql.SQLException

Create an OracleSqljConnectionCacheImpl with the given ConnectionPoolDataSource from which PooledConnections have to created. In which case, url, user name, password, and other DataSource properties set on this Cache are ignored.

Parameters:
ds - a datasource from which the Cache can create PooledConnections.
Throws:
java.sql.SQLException - error creating Cache
Method Detail

getDefaultContext

public DefaultContext getDefaultContext()
                                 throws java.sql.SQLException
Returns a DefaultContext instance. A new logical JDBC connection handle is created to be associated with that DefaultContext instance.
Throws:
java.sql.SQLException - a DefaultContext instance cannot be created

getDefaultContext

public DefaultContext getDefaultContext(java.lang.String user,
                                        java.lang.String password)
                                 throws java.sql.SQLException
Returns a DefaultContext instance. A new logical JDBC connection handle is created with the given user and password and is associated with that DefaultContext instance.
Parameters:
user - the user name for the JDBC connection assciated with the returned context
password - the password for the JDBC connection assciated with the returned context
Throws:
java.sql.SQLException - a DefaultContext instance cannot be created

getContext

public ConnectionContext getContext(java.lang.Class ctxClass)
                             throws java.sql.SQLException
Returns an instance of ctxClass. A new logical JDBC connection handle is created with the given user and password and is associated with that instance.
Parameters:
ctxClass - the type of the returned connection context
Throws:
java.sql.SQLException - the connection context cannot be created

getContext

public ConnectionContext getContext(java.lang.Class ctxClass,
                                    java.lang.String user,
                                    java.lang.String password)
                             throws java.sql.SQLException
Returns an instance of ctxClass. A new logical JDBC connection handle is created with the given user and password and is associated with that instance.
Parameters:
ctxClass - the type of the returned connection context
user - the user name for the JDBC connection assciated with the returned context
password - the password for the JDBC connection assciated with the returned context
Throws:
java.sql.SQLException - the connection context cannot be created

getDefaultContext

public DefaultContext getDefaultContext(boolean autoCommit)
                                 throws java.sql.SQLException
Returns a DefaultContext instance. A new logical JDBC connection handle is associated with that DefaultContext instance.
Parameters:
autoCommit - the autoCommit setting of the JDBC connection associated with the returned connection context
Throws:
java.sql.SQLException - a DefaultContext instance cannot be created

getDefaultContext

public DefaultContext getDefaultContext(java.lang.String user,
                                        java.lang.String password,
                                        boolean autoCommit)
                                 throws java.sql.SQLException
Returns a DefaultContext instance. A new logical JDBC connection handle is created with the given user and password and is associated with that DefaultContext instance.
Parameters:
user - the user name for the JDBC connection assciated with the returned context
password - the password for the JDBC connection assciated with the returned context
autoCommit - the autoCommit setting of the JDBC connection associated with the returned connection context
Throws:
java.sql.SQLException - a DefaultContext instance cannot be created

getContext

public ConnectionContext getContext(java.lang.Class ctxClass,
                                    boolean autoCommit)
                             throws java.sql.SQLException
Returns an instance of ctxClass. A new logical JDBC connection handle is created and is associated with that instance.
Parameters:
ctxClass - the type of the returned connection context
autoCommit - the autoCommit setting of the JDBC connection associated with the returned connection context
Throws:
java.sql.SQLException - a DefaultContext instance cannot be created

getContext

public ConnectionContext getContext(java.lang.Class ctxClass,
                                    java.lang.String user,
                                    java.lang.String password,
                                    boolean autoCommit)
                             throws java.sql.SQLException
Returns an instance of ctxClass. A new logical JDBC connection handle is created and is associated with that instance.
Parameters:
ctxClass - the type of the returned connection context
user - the user name for the JDBC connection assciated with the returned context
password - the password for the JDBC connection assciated with the returned context
autoCommit - the autoCommit setting of the JDBC connection associated with the returned connection context
Throws:
java.sql.SQLException - the connection context cannot be created



:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0312 ]--