Uses of Class
velosurf.sql.ConnectionWrapper

Packages that use ConnectionWrapper
velosurf.sql Contains all core classes dealing with the database itself. 
 

Uses of ConnectionWrapper in velosurf.sql
 

Fields in velosurf.sql declared as ConnectionWrapper
protected  ConnectionWrapper PooledPreparedStatement.connection
          the connection
protected  ConnectionWrapper PooledStatement.connection
          database connection
 

Methods in velosurf.sql that return ConnectionWrapper
protected  ConnectionWrapper ConnectionPool.createConnection()
           
 ConnectionWrapper PooledPreparedStatement.getConnection()
          get statement's Connection
 ConnectionWrapper ConnectionPool.getConnection()
           
 ConnectionWrapper PooledStatement.getConnection()
          get statement's Connection
abstract  ConnectionWrapper Pooled.getConnection()
          get the connection used by this statement
 ConnectionWrapper Database.getConnection()
          get a jdbc connection
 ConnectionWrapper Database.getTransactionConnection()
          get the underlying jdbc connection used for transactions, and mark it right away as busy
 

Constructors in velosurf.sql with parameters of type ConnectionWrapper
PooledPreparedStatement(ConnectionWrapper connection, java.sql.PreparedStatement preparedStatement)
          builds a new PooledPreparedStatement
PooledStatement(ConnectionWrapper connection, java.sql.Statement statement)
          builds a new PooledStatement
 



~ooOoo~