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

link.jfire.sql.field.impl.LongField Maven / Gradle / Ivy

package link.jfire.sql.field.impl;

import java.lang.reflect.Field;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

@SuppressWarnings("restriction")
public class LongField extends AbstractMapField
{
    
    public LongField(Field field)
    {
        super(field);
    }
    
    @Override
    public void setEntityValue(Object entity, ResultSet resultSet) throws SQLException
    {
        long value = resultSet.getLong(dbColName);
        if (resultSet.wasNull() == false)
        {
            unsafe.putLong(entity, offset, value);
        }
    }
    
    @Override
    public void setStatementValue(PreparedStatement statement, Object entity, int index) throws SQLException
    {
        statement.setLong(index, unsafe.getLong(entity, offset));
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy