Hi,
I want to be able to configure the 'RowDelimiter' and 'HeaderRowDelimiter' values used by my Flat File Connection Manager using my XML configuration file.
I've used XML config files with SSIS packages many times without any problems, and so I know my config file is correctly formatted and is being picked up by my package, but the package just doesn't seem to be altering the 'RowDelimiter' values as specified in the config file.
Basically I want to be able to configure the use of either {CR}{LF} line terminators, or {LF} terminators, but I can't understand what I'm doing wrong. No matter what values I try to configure, the values given at design time seem to take precedence. I've also tried specifying nothing at all for the delimiters at design time, but then the process fails due to it ignoring the actual terminators in the flat-file (i.e. again it seems to completely ignore my configuration settings and attempts to use exactly what was specified at design time).
My config entries are as follows :
<Configuration ConfiguredType="Property" Path="\Package.Connections[Connection 1].Properties[HeaderRowDelimiter]" ValueType="String" xml:space="preserve">
<ConfiguredValue>_x000D__x000A_</ConfiguredValue> </Configuration>
Obviously this is driving me mad, as it should be so simply and straightforward, so any help would be very greatly appreciated!!!
Pat.