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 PooledStatement.connection
          database connection.
 

Fields in velosurf.sql with type parameters of type ConnectionWrapper
private  java.util.List<ConnectionWrapper> ConnectionPool.connections
          list of all connections
 

Methods in velosurf.sql that return ConnectionWrapper
private  ConnectionWrapper ConnectionPool.createConnection()
          Create a connection.
 ConnectionWrapper PooledSimpleStatement.getConnection()
          get statement's Connection.
 ConnectionWrapper ConnectionPool.getConnection()
          Get a connection.
 ConnectionWrapper Database.getConnection()
          Get a jdbc connection.
abstract  ConnectionWrapper PooledStatement.getConnection()
          get the connection used by this statement.
 ConnectionWrapper PooledPreparedStatement.getConnection()
          get statement 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)
          build a new PooledPreparedStatement.
PooledSimpleStatement(ConnectionWrapper connection, java.sql.Statement statement)
          build a new PooledStatement.
 



~ooOoo~