Sha256: 6e98fe56b7c90d15f7fee39e6126e97328f1de69855305d5b540a89c804daed1
Contents?: true
Size: 1.51 KB
Versions: 28
Compression:
Stored size: 1.51 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 SqlDateColumnSetter extends ColumnSetter { protected final Calendar calendar; public SqlDateColumnSetter(BatchInsert batch, JdbcColumn column, DefaultValueSetter defaultValue, Calendar calendar) { super(batch, column, defaultValue); this.calendar = calendar; } @Override public void nullValue() throws IOException, SQLException { defaultValue.setSqlDate(); } @Override public void booleanValue(boolean v) throws IOException, SQLException { defaultValue.setSqlDate(); } @Override public void longValue(long v) throws IOException, SQLException { defaultValue.setSqlDate(); } @Override public void doubleValue(double v) throws IOException, SQLException { defaultValue.setSqlDate(); } @Override public void stringValue(String v) throws IOException, SQLException { defaultValue.setSqlDate(); } @Override public void timestampValue(Timestamp v) throws IOException, SQLException { batch.setSqlDate(v, calendar); } @Override public void jsonValue(Value v) throws IOException, SQLException { defaultValue.setSqlDate(); } }
Version data entries
28 entries across 28 versions & 2 rubygems