Example usage for org.springframework.jdbc.core.support JdbcDaoSupport subclass-usage

List of usage examples for org.springframework.jdbc.core.support JdbcDaoSupport subclass-usage

Introduction

In this page you can find the example usage for org.springframework.jdbc.core.support JdbcDaoSupport subclass-usage.

Usage

From source file edu.harvard.i2b2.ontology.dao.ConceptPersistDao.java

public class ConceptPersistDao extends JdbcDaoSupport {

    private static Log log = LogFactory.getLog(ConceptPersistDao.class);

    private SimpleJdbcTemplate jt;

From source file org.easyrec.plugin.aggregator.store.dao.impl.AggregatorActionDAOMysqlImpl.java

/**
 * This class provides methods to access data in a datamining/rulemining database.
 * <p/>
 * <p><b>Company:&nbsp;</b>
 * SAT, Research Studios Austria</p>
 * <p/>

From source file com.maomao.framework.dao.jdbc.JdbcDAO.java

/**
 * JDBC ?
 * 
 * @author maomao
 * 
 */

From source file org.sakaiproject.delegatedaccess.dao.impl.DelegatedAccessDaoImpl.java

public class DelegatedAccessDaoImpl extends JdbcDaoSupport implements DelegatedAccessDao {

    private static final Logger log = Logger.getLogger(DelegatedAccessDaoImpl.class);
    private PropertiesConfiguration statements;
    private static int ORACLE_IN_CLAUSE_SIZE_LIMIT = 1000;
    private boolean oracle = false;

From source file net.sf.infrared.collector.impl.persistence.ApplicationStatisticsDaoImpl.java

public class ApplicationStatisticsDaoImpl extends JdbcDaoSupport implements ApplicationStatisticsDao {

    private static final String SQL_INSERT_LAYER_TIME = "insert into LAYER_TIMES (APP_NAME, HOST_NAME, LAYER, DURATION, INSERT_TIME) "
            + "values(?, ?, ?, ?, ?)";

    private static final String SQL_INSERT_AGGREGATE_EXECUTION_TIME = "insert into EXECUTION_TIMES(APP_NAME, HOST_NAME, LAYER, CLASS_NAME, NAME, EXEC_COUNT, "

From source file net.solarnetwork.node.dao.jdbc.AbstractJdbcDao.java

/**
 * Base class for JDBC based DAO implementations.
 * 
 * <p>
 * This class extends {@link JdbcDaoSupport} with methods for handling upgrade
 * maintenance of the table(s) managed by this DAO over time, e.g. creating

From source file org.pssframework.dao.BaseSpringJdbcDao.java

/**
 * SpringJDBC
 * @author PSS
 *
 */
public abstract class BaseSpringJdbcDao<E, PK extends Serializable> extends JdbcDaoSupport

From source file org.gbif.harvest.portal.synchronise.dao.jdbc.RawOccurrenceRecordDaoImpl.java

/**
 * Pure JDBC implementation of the RawOccurrenceRecordDao.
 */
public class RawOccurrenceRecordDaoImpl extends JdbcDaoSupport implements RawOccurrenceRecordDao {

    /**

From source file no.kantega.publishing.common.ContentIdHelperImpl.java

public class ContentIdHelperImpl extends JdbcDaoSupport implements ContentIdHelper, ServletContextAware {
    private static final Logger log = LoggerFactory.getLogger(ContentIdHelperImpl.class);
    private static final Pattern dotPattern = Pattern.compile("\\.\\.");

    private final int defaultContentID = -1;
    private final int defaultSiteId = -1;

From source file edu.harvard.i2b2.im.dao.PdoDao.java

public class PdoDao extends JdbcDaoSupport {

    private static Log log = LogFactory.getLog(PdoDao.class);

    private GetPDOFromInputListRequestType getPDOFromInputListRequestType = null;