public abstract static class JdbcIO.Write<T> extends PTransform<PCollection<T>,PDone>
PTransform to write to a JDBC datasource.name| Constructor and Description | 
|---|
| Write() | 
| Modifier and Type | Method and Description | 
|---|---|
| PDone | expand(PCollection<T> input)Override this method to specify how this  PTransformshould be expanded
 on the givenInputT. | 
| void | validate(PipelineOptions options)Called before running the Pipeline to verify this transform is fully and correctly
 specified. | 
| JdbcIO.Write<T> | withDataSourceConfiguration(JdbcIO.DataSourceConfiguration config) | 
| JdbcIO.Write<T> | withPreparedStatementSetter(JdbcIO.PreparedStatementSetter<T> setter) | 
| JdbcIO.Write<T> | withStatement(java.lang.String statement) | 
getAdditionalInputs, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, populateDisplayData, toStringpublic JdbcIO.Write<T> withDataSourceConfiguration(JdbcIO.DataSourceConfiguration config)
public JdbcIO.Write<T> withStatement(java.lang.String statement)
public JdbcIO.Write<T> withPreparedStatementSetter(JdbcIO.PreparedStatementSetter<T> setter)
public PDone expand(PCollection<T> input)
PTransformPTransform should be expanded
 on the given InputT.
 NOTE: This method should not be called directly. Instead apply the
 PTransform should be applied to the InputT using the apply
 method.
 
Composite transforms, which are defined in terms of other transforms, should return the output of one of the composed transforms. Non-composite transforms, which do not apply any transforms internally, should return a new unbound output and register evaluators (via backend-specific registration methods).
expand in class PTransform<PCollection<T>,PDone>public void validate(PipelineOptions options)
PTransformBy default, does nothing.
validate in class PTransform<PCollection<T>,PDone>