Watch, Follow, &
Connect with Us
Public Report
Report From: Delphi-BCB/Midas/XML Midas/TXMLTransform    [ Add a report in this area ]  
Report #:  8112   Status: Reported
Error in Xmlxform.pas
Project:  Delphi Build #:  4.453
Version:    7.0 Submitted By:   Pavel Sinyaev
Report Type:  Basic functionality failure Date Reported:  5/11/2004 2:34:51 AM
Severity:    Serious / Highly visible problem Last Updated: 5/11/2004 2:34:05 AM
Platform:    All versions Internal Tracking #:  
Resolution: None  Resolved in Build: : None
Duplicate of:  None
Voting and Rating
Overall Rating: No Ratings Yet
0.00 out of 5
Total Votes: None
Description
Some DataSet transform incorrectly ...
see the reports 8074 and 6094
Steps to Reproduce:
None
Workarounds
None
Attachment
None
Comments

Pavel Sinyaev at 5/11/2004 2:38:57 AM -
I replace some lines in xmlxform.pas :

procedure TXMLTransform.Transform(TransNode, SrcNode, DestNode: IDOMNode;
    Count: Integer; InFromList, InDestList, InIdStrList, InValueList,
    InOptionalList, InDateFormatList, InDateFormatTypeList,
    InMapValuesList: TStringList);


...


if InFromList = nil then
      begin
        InFromList.Add(From);
        InDestList.Add(Dest);
        InIdStrList.Add(IdStr);
        InValueList.Add(Value);
        InOptionalList.Add(Optional);
        InDateFormatList.Add(DateFormat);
        InDateFormatTypeList.Add(DateFormatType);
        InMapValuesList.Add(Map_Values);
      end;

...

Server Response from: ETNACODE01