This processor takes Collection and stores every entry in
a database table.
Following parameters are available:
datesKey (mandatory)
Reference key to the Collection in the parameter map.
db_conn (mandatory)
Reference key to the database connection in the parameter map.
destTableName (mandatory)
Name of the table the dates are stored in. If the table already exists
it is droped first.
destDateColumnName (optional)
Name of the date column in the new table (Default: "DATE").
public class DateTableCreatorProcessor extends net.simplace.util.pipeline.FWProcessor { // Public Constructors public DateTableCreatorProcessor(); // Constants public static final String INKEY_DATES_COLLECTION; public static final String INKEY_DB_CONNECTION; public static final String INKEY_TABLE_NAME; public static final String INKEY_COLUMN_NAME; // Public Instance Methods