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

org.skife.jdbi.v2.util.FloatMapper Maven / Gradle / Ivy

Go to download

jDBI is designed to provide convenient tabular data access in Java(tm). It uses the Java collections framework for query results, provides a convenient means of externalizing sql statements, and provides named parameter support for any database being used.

There is a newer version: 2.78
Show newest version
package org.skife.jdbi.v2.util;

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

public class FloatMapper extends TypedMapper
{

    public FloatMapper()
    {
        super();
    }

    public FloatMapper(int index)
    {
        super(index);
    }

    public FloatMapper(String name)
    {
        super(name);
    }

    @Override
    protected Float extractByName(ResultSet r, String name) throws SQLException
    {
        return r.getFloat(name);
    }

    @Override
    protected Float extractByIndex(ResultSet r, int index) throws SQLException
    {
        return r.getFloat(index);
    }

    public static final FloatMapper FIRST = new FloatMapper();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy