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

tech.ydb.jooq.binding.Uint16Binding Maven / Gradle / Ivy

The newest version!
package tech.ydb.jooq.binding;

import org.jooq.BindingGetResultSetContext;
import org.jooq.BindingSetStatementContext;
import org.jooq.Converter;
import org.jooq.impl.AbstractBinding;
import org.jooq.impl.IdentityConverter;
import org.jooq.types.UShort;
import tech.ydb.table.values.PrimitiveType;
import tech.ydb.table.values.PrimitiveValue;

import java.sql.SQLException;

import static tech.ydb.jooq.binding.BindingTools.indexType;

@SuppressWarnings("resource")
public final class Uint16Binding extends AbstractBinding {

    private static final int INDEX_TYPE = indexType(PrimitiveType.Uint16);

    @Override
    public Converter converter() {
        return new IdentityConverter<>(UShort.class);
    }

    @Override
    public void set(BindingSetStatementContext ctx) throws SQLException {
        if (ctx.value() == null) {
            ctx.statement().setNull(ctx.index(), INDEX_TYPE);
        } else {
            ctx.statement().setObject(ctx.index(), PrimitiveValue.newUint16(ctx.value().intValue()), INDEX_TYPE);
        }
    }

    @Override
    public void get(BindingGetResultSetContext ctx) throws SQLException {
        int value = ctx.resultSet().getInt(ctx.index());
        ctx.value(UShort.valueOf(value));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy