Sha256: 957ba57d50bd02d1340567c3365241e5715c3e4323181f304ca9fe92fdd72b31
Contents?: true
Size: 1.2 KB
Versions: 8
Compression:
Stored size: 1.2 KB
Contents
package org.embulk.output.jdbc.setter; import java.io.IOException; import java.sql.SQLException; import org.embulk.spi.time.Timestamp; import org.embulk.output.jdbc.JdbcColumn; import org.embulk.output.jdbc.BatchInsert; public class NullColumnSetter extends ColumnSetter { public NullColumnSetter(BatchInsert batch, JdbcColumn column, DefaultValueSetter defaultValue) { super(batch, column, defaultValue); } @Override public void booleanValue(boolean v) throws IOException, SQLException { defaultValue.setNull(); } @Override public void longValue(long v) throws IOException, SQLException { defaultValue.setNull(); } @Override public void doubleValue(double v) throws IOException, SQLException { defaultValue.setNull(); } @Override public void stringValue(String v) throws IOException, SQLException { defaultValue.setNull(); } @Override public void timestampValue(Timestamp v) throws IOException, SQLException { defaultValue.setNull(); } @Override public void nullValue() throws IOException, SQLException { defaultValue.setNull(); } }
Version data entries
8 entries across 8 versions & 1 rubygems