Sha256: ade548586e36f38976ce50765f1dc810b7519755968af8d9cad530d90fa664cd
Contents?: true
Size: 1.56 KB
Versions: 28
Compression:
Stored size: 1.56 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; import org.msgpack.value.Value; 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); } @Override public void jsonValue(Value v) throws IOException, SQLException { defaultValue.setSqlTimestamp(); } }
Version data entries
28 entries across 28 versions & 2 rubygems