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

com.nfwork.dbfound.model.resolver.ShortResolver Maven / Gradle / Ivy

There is a newer version: 4.3.2
Show newest version
package com.nfwork.dbfound.model.resolver;

import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Calendar;

public class ShortResolver implements TypeResolver{

    @Override
    public Object getValue(ResultSet rs, int index, Calendar defaultCalendar) throws SQLException {
        return rs.getShort(index);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy