Example usage for javax.sql DataSource interface-usage

List of usage examples for javax.sql DataSource interface-usage

Introduction

In this page you can find the example usage for javax.sql DataSource interface-usage.

Usage

From source file org.lexevs.dao.database.datasource.ErrorReportingDataSourceDecorator.java

public class ErrorReportingDataSourceDecorator implements DataSource, InitializingBean {

    private DataSource decoratoredDataSource;

    private SystemVariables systemVariables;

From source file org.broadleafcommerce.openadmin.server.service.persistence.datasource.SandBoxDataSource.java

public class SandBoxDataSource implements DataSource {

    private static final Log LOG = LogFactory.getLog(SandBoxDataSource.class);

    public static final String DRIVERNAME = "org.hsqldb.jdbcDriver";
    public static final int DEFAULTPORT = 40025;

From source file com.frameworkset.commons.dbcp2.PoolingDataSource.java

/**
 * A simple {@link DataSource} implementation that obtains
 * {@link Connection}s from the specified {@link ObjectPool}.
 *
 * @param <C> The connection type
 *

From source file org.executequery.datasource.SimpleDataSource.java

/**
 *
 * @author   Takis Diakoumis
 * @version  $Revision: 1487 $
 * @date     $Date: 2015-08-23 22:21:42 +1000 (Sun, 23 Aug 2015) $
 */

From source file com.mysoft.b2b.event.util.MysoftBoneCPDataSource.java

/**
 * chengp: Change to the actual description of this class
 * @version   Revision History
 * <pre>
 * Author     Version       Date        Changes
 * chengp    1.0           2014825     Created

From source file org.batoo.jpa.core.impl.jdbc.DataSourceImpl.java

/**
 * 
 * @author hceylan
 * @since $version
 */
public class DataSourceImpl implements DataSource {

From source file org.jboss.dashboard.database.NonPooledDataSource.java

/**
 * A data source implementation that bounds every connection to the underlying thread.
 */
public class NonPooledDataSource implements DataSource {

    private static transient Log log = LogFactory.getLog(NonPooledDataSource.class.getName());

From source file org.bytesoft.bytejta.supports.jdbc.LocalXADataSource.java

public class LocalXADataSource extends TransactionListenerAdapter
        implements XADataSource, DataSource, DataSourceHolder, BeanNameAware, TransactionListener {
    private PrintWriter logWriter;
    private int loginTimeout;

    private DataSource dataSource;

From source file org.apache.cayenne.datasource.DriverDataSource.java

/**
 * A non-pooling DataSource implementation wrapping a JDBC driver.
 */
public class DriverDataSource implements DataSource {

    private static final Log LOGGER = LogFactory.getLog(DriverDataSource.class);

From source file com.alibaba.wasp.jdbcx.JdbcConnectionPool.java

/**
 * A simple standalone JDBC connection pool.
 * 
 */
public class JdbcConnectionPool implements DataSource, ConnectionEventListener {