All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.guyi.ipojo.module.h2.executor.handler.SingleIntegerResultHandler Maven / Gradle / Ivy

The newest version!
package tech.guyi.ipojo.module.h2.executor.handler;

import org.apache.commons.dbutils.ResultSetHandler;

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

/**
 * @author guyi
 * @since 1.0.0.0
 */
public class SingleIntegerResultHandler implements ResultSetHandler {

    @Override
    public Integer handle(ResultSet resultSet) throws SQLException {
        if(resultSet.next()){
            return resultSet.getInt(1);
        }
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy