Sha256: 3de4b9783f763c238395163b57095fea5214583f8426e7e1a5ad1e873dbf3dfa
Contents?: true
Size: 1.35 KB
Versions: 4
Compression:
Stored size: 1.35 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 SqlDateColumnSetter extends ColumnSetter { private 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); } }
Version data entries
4 entries across 4 versions & 1 rubygems