List of usage examples for org.springframework.jdbc.core RowMapper interface-usage
From source file net.paoding.rose.jade.core.mapper.ArrayRowMapper.java
/**
* SQL
*
* @author [qieqie.wang@gmail.com]
* @author [in355hz@gmail.com]
*/
From source file com.sinosoft.one.data.jade.rowmapper.ArrayRowMapper.java
/**
* SQL
*
* @author [qieqie.wang@gmail.com]
* @author [in355hz@gmail.com]
*/
From source file com.griddynamics.spring.batch.football.internal.PlayerSummaryRowMapper.java
/**
* RowMapper used to map a ResultSet to a {@link PlayerSummary}
*
* @author Lucas Ward
*
*/
From source file com.mvdb.etl.model.ConfigurationRowMapper.java
public class ConfigurationRowMapper implements RowMapper { public Object mapRow(ResultSet rs, int rowNum) throws SQLException { Configuration configuration = new Configuration(); configuration.setCustomer(rs.getString("customer")); configuration.setName(rs.getString("name")); configuration.setValue(rs.getString("value"));
From source file com.laxser.blitz.lama.core.mapper.ArrayRowMapper.java
/**
* SQL
*
* @author laxser Date 2012-3-22 ?3:40:38
@contact [duqifan@gmail.com]
@ArrayRowMapper.java
From source file org.openmrs.module.bahmniexports.example.domain.trade.internal.CustomerDebitRowMapper.java
public class CustomerDebitRowMapper implements RowMapper<CustomerDebit> { public static final String CUSTOMER_COLUMN = "customer"; public static final String PRICE_COLUMN = "price"; @Override
From source file com.mvdb.etl.model.OrderRowMapper.java
public class OrderRowMapper implements RowMapper { public Object mapRow(ResultSet rs, int rowNum) throws SQLException { Order order = new Order(); order.setOrderId(rs.getLong("ORDER_ID")); order.setNote(rs.getString("NOTE")); order.setSaleCode(rs.getInt("SALE_CODE"));
From source file org.apache.niolex.config.dao.impl.ConfigItemRowMapper.java
/** * @author <a href="mailto:xiejiyun@gmail.com">Xie, Jiyun</a> * @version 1.0.0 * @since 2012-7-6 */ public class ConfigItemRowMapper implements RowMapper<ConfigItem> {
From source file lcn.module.batch.web.guide.service.CustomerCreditRowMapper.java
/**
* CustomerCreditRowMapper
*
* @author
* @since 2012. 07.25
* @version 1.0
From source file org.openmrs.module.bahmniexports.example.domain.trade.internal.CustomerCreditRowMapper.java
public class CustomerCreditRowMapper implements RowMapper<CustomerCredit> { public static final String ID_COLUMN = "id"; public static final String NAME_COLUMN = "name"; public static final String CREDIT_COLUMN = "credit";