net.orpiske.ssps.common.db.SimpleRsHandler.java Source code

Java tutorial

Introduction

Here is the source code for net.orpiske.ssps.common.db.SimpleRsHandler.java

Source

/**
   Copyright 2012 Otavio Rodolfo Piske
    
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
    
   http://www.apache.org/licenses/LICENSE-2.0
    
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/
package net.orpiske.ssps.common.db;

import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;

import net.orpiske.ssps.common.utils.NameConverter;

import org.apache.commons.beanutils.PropertyUtils;
import org.apache.commons.dbutils.ResultSetHandler;

/**
 * Handles the result of a query
 * 
 * @author Otavio R. Piske <angusyoung@gmail.com>
 */
public class SimpleRsHandler<T> implements ResultSetHandler<T> {
    private T dto;

    /**
     * Constructor
     * @param dto The DTO to handle
     */
    public SimpleRsHandler(T dto) {
        this.dto = dto;
    }

    /* (non-Javadoc)
     * @see org.apache.commons.dbutils.ResultSetHandler#handle(java.sql.ResultSet)
     */
    @Override
    public T handle(ResultSet rs) throws SQLException {

        // No records to handle :O
        if (!rs.next()) {
            return null;
        }

        ResultSetMetaData meta = rs.getMetaData();

        for (int i = 1; i <= meta.getColumnCount(); i++) {
            Object value = rs.getObject(i);
            String name = meta.getColumnName(i);

            try {
                /*
                 * We convert the column name to a more appropriate and java like name 
                 * because some columns are usually named as some_thing whereas Java 
                 * properties are named someThing. This call does this conversion.
                 */
                String javaProperty = NameConverter.sqlToProperty(name);

                PropertyUtils.setSimpleProperty(dto, javaProperty, value);
            } catch (Exception e) {
                throw new SQLException("Unable to set property " + name + " for bean" + dto.getClass(), e);
            }
        }

        return dto;
    }

}