List of usage examples for java.sql Connection interface-usage
From source file org.apache.ode.utils.LoggingConnectionWrapper.java
/** * @author Matthieu Riou <mriou at apache dot org> */ public class LoggingConnectionWrapper implements Connection { private Connection _conn;
From source file com.amazon.carbonado.repo.jdbc.LoggingConnection.java
/** * Connection returned by LoggingDataSource. * * @author Brian S O'Neill */ class LoggingConnection implements Connection {
From source file org.apache.ojb.broker.util.WrappedConnection.java
/** * Wrapper class for connections. * Simplified version of {@link org.apache.commons.dbcp.DelegatingConnection} */ public class WrappedConnection implements Connection { private Connection _conn = null;
From source file com.taobao.tddl.jdbc.atom.jdbc.TConnectionWrapper.java
public class TConnectionWrapper implements Connection { private static Log log = LogFactory.getLog(TConnectionWrapper.class); private final Connection targetConnection; private final TDataSourceWrapper dataSourceWrapper; private Set<TStatementWrapper> statements = new HashSet<TStatementWrapper>(1);
From source file org.tranql.connector.jdbc.ConnectionWrapper.java
/**
* ConnectionWrapper provides additional connection level capabilities on top of
* a regular connection. The current set of capabilities include:
*
* StatementCaching
* IsolationLevel caching
From source file org.ut.biolab.medsavant.server.db.PooledConnection.java
/** * * @author Andrew */ public class PooledConnection implements Connection { private static Log LOG = LogFactory.getLog(PooledConnection.class);
From source file org.kuali.coeus.sys.framework.persistence.TrackingConnection.java
/** this class is to be used for diagnostic purposes in regards to tracking currently opened and closed connections. */ public class TrackingConnection implements Connection { private static final Log LOG = LogFactory.getLog(TrackingConnection.class); private final Connection connection;
From source file org.mule.transport.jdbc.xa.ConnectionWrapper.java
/** * Using for unification XAConnection and Connection */ public class ConnectionWrapper implements Connection, XaTransaction.MuleXaObject { private final XAConnection xaConnection; private Connection connection;
From source file org.apache.tajo.jdbc.TajoConnection.java
public class TajoConnection implements Connection { private static Log LOG = LogFactory.getLog(TajoConnection.class); private final TajoClient tajoClient; private final AtomicBoolean closed = new AtomicBoolean(true); private final String rawURI;
From source file org.mule.module.db.internal.domain.xa.ConnectionWrapper.java
/** * Using for unification XAConnection and Connection */ public class ConnectionWrapper implements Connection, XaTransaction.MuleXaObject { private final XAConnection xaConnection;