Class CopyTableProcessor

java.lang.Object
net.simplace.pipe.control.FWProcessor
net.simplace.pipe.processors.CopyTableProcessor

public class CopyTableProcessor extends FWProcessor
This processor performs SQL-Statements on two existing Databases to copy the content of one table
Parameter Description
db_conn_source JDBC sonnection of source database from Pipeline.
db_conn_target JDBC sonnection of target database from Pipeline.
table_name Tablename of source table in source database.
target_table_name (optional) Tablename of target table in target database. If not given same name is used
Author:
Andreas Enders
  • Constructor Details

    • CopyTableProcessor

      public CopyTableProcessor()
  • Method Details

    • process

      protected boolean process() throws PipeLineException
      Description copied from class: FWProcessor
      Must be overridden to implement concrete pipe procedure.
      Specified by:
      process in class FWProcessor
      Returns:
      success
      Throws:
      PipeLineException
    • checkInParameterMap

      public boolean checkInParameterMap()
      Checks whether the in-channel contains all required parameters.
      Overrides:
      checkInParameterMap in class FWProcessor
      Returns:
      true if not overridden by implementations