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

io.kestra.plugin.jdbc.dremio.DremioCellConverter Maven / Gradle / Ivy

package io.kestra.plugin.jdbc.dremio;

import io.kestra.plugin.jdbc.AbstractCellConverter;

import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.time.ZoneId;

public class DremioCellConverter extends AbstractCellConverter {

    public DremioCellConverter(ZoneId zoneId) {
        super(zoneId);
    }

    @Override
    public Object convertCell(int columnIndex, ResultSet resultSet, Connection connection) throws SQLException {
        return super.convert(columnIndex, resultSet);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy