Format file

I would like to know if a file with a mixed format can b read or not? Or how can a file with two different formats be read? Can some one please guide me on this?

Yes, DataReader and DataWriter components handle mixed data format (combination between fixlen and delimited data format).

Consider this type of metadata:

And this data file:

Martin;1234Otasanek
Jim;5678Steeve

This result in this table:

±------±--------±--------±--------±----------+
|Record |Field1 |Field2 |Field3 |Field4 |
±------±--------±--------±--------±----------+
|# 1 |Martin |123 |4 |Otasanek|
|# 2 |Jim |567 |8 |Steeve |
±------±--------±--------±--------±----------+

Unfortunately this type of metadata is not direct supported in actual clover GUI release.

OtaSanek