I am binding an XMLConnector to a DataSet Component in order to gather data and
store it, but I am doing multiple calls to the connector. On each call, the
data is writing over the current data in the DS. Is there a way for the DS
comp to make sure after each call, the pointer goes to the end of the array
(dataProvider) and insert the data there and not start at the beginning and
write over everything? It's like the dataProvider is a snapshot of data and
just writes over everything on the next call, are there any alternatives?
Thanks in advance for any assistance!
Pilipo - 26 Aug 2005 15:54 GMT
Data binding will always write over what it is bound to. That's its purpose. In
order to append, you would have to use another DS component to hold the
compilation. During the afterLoaded event of the DS bound to your XML
Connector, make a loop that handles each item in the DS's item array and adds
them to the compilation DS.