Example usage for org.springframework.jdbc.core JdbcTemplate subclass-usage

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

Introduction

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

Usage

From source file org.gridobservatory.greencomputing.dao.DaoSupport.java

public abstract class DaoSupport extends JdbcTemplate {

    @Resource
    private JdbcTemplate jdbcTemplate;

    protected JdbcTemplate getJdbcTemplate() {

From source file org.beangle.ems.database.service.SqlService.java

public class SqlService extends JdbcTemplate {

    Dialect dialect;

    public int count(String sql) {
        String countSql = "select count(*) from (" + sql + ")";

From source file com.ideabase.repository.core.dao.impl.ItemDAOJdbcImpl.java

/**
 * {@see ItemDAO} plain Jdbc based implementation.
 * @author <a href="http://hasan.we4tech.com">nhm tanveer...(hasan)</a>
 */
public class ItemDAOJdbcImpl extends JdbcTemplate implements ItemDAO {

From source file com.github.ferstl.spring.jdbc.oracle.OracleJdbcTemplate.java

/**
 * A subclass of Spring's {@link JdbcTemplate} the uses
 * <a href="http://docs.oracle.com/cd/B28359_01/java.111/b31224/oraperf.htm#autoId2">Oracle Update Batching</a>. Each of
 * the {@code batchUpdate()} methods in this class will return the number of updated rows on the DB. However, batches
 * are processed as a whole, so it is not possible to find out the number of updated rows for each individual statement
 * in a batch. For example, if the batch size is set to 5 and a batch update containing 7 statements

From source file com.surveypanel.dao.JDBCFormDAO.java

/**
 * @author stanpanza
 *
 */
public class JDBCFormDAO extends JdbcTemplate implements FormDAO {

From source file xyz.vopen.passport.commons.jdbc.JdbcTemplate.java

/**
 * ??
 *
 * @author Hongvi Xu
 */
@SuppressWarnings({ "rawtypes", "unchecked" })

From source file eu.trentorise.smartcampus.resourceprovider.jdbc.JdbcServices.java

/**
 * JDBC-based implementation of the {@link AuthServices}
 * 
 * @author federico
 * 
 */

From source file com.plexobject.testplayer.dao.jdbc.GenericDaoJdbc.java

public abstract class GenericDaoJdbc<T, ID extends Serializable> extends JdbcTemplate implements GenericDao<T, ID> {
    private Class<T> persistentClass;
    private RowMapper mapper;
    private String create;
    private String idQuery;
    private String allQuery;

From source file com.nway.spring.jdbc.SqlExecutor.java

/**
 * 
 * <p>
 * &nbsp;&nbsp;
 * <ul>
 * <li>queryForBeannull</li>

From source file anyframe.core.query.impl.jdbc.PagingJdbcTemplate.java

/**
 * extend from Spring's JdbcTemplate, with pagination function.
 * 
 * @author SoYon Lim
 * @author JongHoon Kim
 */