Example usage for org.springframework.jdbc.core RowMapper interface-usage

List of usage examples for org.springframework.jdbc.core RowMapper interface-usage

Introduction

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

Usage

From source file uk.ac.ebi.emma.entity.Biblio.java

/**
 *
 * @author phil, mrelac
 * 02-Sept-2013 (mrelac) extended for JdbcTemplate use by adding RowMapper,
 *   JdbcTemplate getter/setter, and Serializable attribute.
 */

From source file net.paoding.rose.jade.rowmapper.MapEntryColumnRowMapper.java

/**
 * SQL?keyvalue?key-value
 * 
 * @author  [qieqie.wang@gmail.com]
 * @author  [in355hz@gmail.com]
 * 

From source file net.bhira.sample.api.jdbc.EmployeeRowMapper.java

/**
 * Helper class used to map a single row in jdbc ResultSet to
 * {@link net.bhira.sample.model.Employee} object.
 * 
 * @author Baldeep Hira
 */

From source file org.sakaiproject.dash.dao.mapper.CalendarItemMapper.java

/**
 * 
 *
 */
public class CalendarItemMapper implements RowMapper {

From source file com.sinosoft.one.data.jade.rowmapper.MapEntryColumnRowMapper.java

/**
 * SQL?keyvalue?key-value
 * 
 * @author  [qieqie.wang@gmail.com]
 * @author  [in355hz@gmail.com]
 * 

From source file ch.digitalfondue.npjt.ConstructorAnnotationRowMapper.java

public class ConstructorAnnotationRowMapper<T> implements RowMapper<T> {

    private final Constructor<T> con;
    private final ColumnMapper[] mappedColumn;

    /**

From source file org.aksw.gerbil.database.ExperimentTaskResultRowMapper.java

public class ExperimentTaskResultRowMapper implements RowMapper<ExperimentTaskResult> {

    @Override
    public ExperimentTaskResult mapRow(ResultSet resultSet, int rowId) throws SQLException {
        return new ExperimentTaskResult(resultSet.getString(1), resultSet.getString(2),
                ExperimentType.valueOf(resultSet.getString(3)), Matching.valueOf(resultSet.getString(4)),

From source file com.clican.pluto.common.support.spring.BeanPropertyRowMapper.java

public class BeanPropertyRowMapper implements RowMapper {

    /** Logger available to subclasses */
    protected final Log logger = LogFactory.getLog(RowMapper.class);

    /** The class we are mapping to */

From source file io.lavagna.common.ConstructorAnnotationRowMapper.java

public class ConstructorAnnotationRowMapper<T> implements RowMapper<T> {

    private final Constructor<T> con;
    private final List<ColumnMapper> mappedColumn;

    /**

From source file com.wantscart.jade.core.BeanPropertyRowMapper.java

/**
 * {@link RowMapper} implementation that converts a row into a new instance
 * of the specified mapped target class. The mapped target class must be a
 * top-level class and it must have a default or no-arg constructor.
 * <p/>
 * <p/>