I have a number of different fixed width file formats (specs) that I have to use when exporting data from mysql. Some of the things that I have to keep in mind are:
data within various fields has to be left justified
others right justified
some are required for the record
others are optional
some need to be zero filled
I would like to use the file format as a config file or something along these lines to allow me the maximum amount of flexibility, because these formats change on a fairly regular basis. Any suggestions would be greatly appreciated. Thanks in advance.
Glenn