Sha256: fa64b069c20ea8e1341e0fe651fae5d3989403915a4fdba2719a36024bb06b28
Contents?: true
Size: 427 Bytes
Versions: 4
Compression:
Stored size: 427 Bytes
Contents
package org.embulk.output.jdbc; import org.embulk.spi.Column; import org.embulk.spi.time.Timestamp; import org.msgpack.value.Value; public interface Record { boolean isNull(Column column); boolean getBoolean(Column column); long getLong(Column column); double getDouble(Column column); String getString(Column column); Timestamp getTimestamp(Column column); Value getJson(Column column); }
Version data entries
4 entries across 4 versions & 1 rubygems