Sha256: 51243a1a9a20e0e56c70c27019ea68c83e4c6c6034499d8c9a7d37c9ace3bdcb
Contents?: true
Size: 1.39 KB
Versions: 2
Compression:
Stored size: 1.39 KB
Contents
package org.embulk.output.jdbc.setter; import java.util.Calendar; 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 SqlTimestampColumnSetter extends ColumnSetter { protected final Calendar calendar; public SqlTimestampColumnSetter(BatchInsert batch, JdbcColumn column, DefaultValueSetter defaultValue, Calendar calendar) { super(batch, column, defaultValue); this.calendar = calendar; } @Override public void nullValue() throws IOException, SQLException { defaultValue.setSqlTimestamp(); } @Override public void booleanValue(boolean v) throws IOException, SQLException { defaultValue.setSqlTimestamp(); } @Override public void longValue(long v) throws IOException, SQLException { defaultValue.setSqlTimestamp(); } @Override public void doubleValue(double v) throws IOException, SQLException { defaultValue.setSqlTimestamp(); } @Override public void stringValue(String v) throws IOException, SQLException { defaultValue.setSqlTimestamp(); } @Override public void timestampValue(Timestamp v) throws IOException, SQLException { batch.setSqlTimestamp(v, calendar); } }
Version data entries
2 entries across 2 versions & 1 rubygems