Sha256: 29303ee92e7fe7d72684d664f7ea5d563249a5fdf28938aa5f2cee394f0f8e69
Contents?: true
Size: 1.46 KB
Versions: 6
Compression:
Stored size: 1.46 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.spi.time.TimestampFormatter; import org.embulk.output.jdbc.JdbcColumn; import org.embulk.output.jdbc.BatchInsert; public class StringColumnSetter extends ColumnSetter { private final TimestampFormatter timestampFormatter; public StringColumnSetter(BatchInsert batch, JdbcColumn column, DefaultValueSetter defaultValue, TimestampFormatter timestampFormatter) { super(batch, column, defaultValue); this.timestampFormatter = timestampFormatter; } @Override public void nullValue() throws IOException, SQLException { defaultValue.setString(); } @Override public void booleanValue(boolean v) throws IOException, SQLException { batch.setString(Boolean.toString(v)); } @Override public void longValue(long v) throws IOException, SQLException { batch.setString(Long.toString(v)); } @Override public void doubleValue(double v) throws IOException, SQLException { batch.setString(Double.toString(v)); } @Override public void stringValue(String v) throws IOException, SQLException { batch.setString(v); } @Override public void timestampValue(Timestamp v) throws IOException, SQLException { batch.setString(timestampFormatter.format(v)); } }
Version data entries
6 entries across 6 versions & 1 rubygems