FIX: The DataSet.WriteXML method outputs a decimal value as scientific notation and causes a System.FormatException exception in subsequent DataSet.ReadXML method calls (321542)
The information in this article applies to:
- Microsoft Visual Studio .NET (2002), Professional Edition
- Microsoft Visual Studio .NET (2002), Enterprise Architect Edition
- Microsoft Visual Studio .NET (2002), Enterprise Developer Edition
- Microsoft Visual Studio .NET (2002), Academic Edition
- Microsoft .NET Framework 1.0
- Microsoft .NET Framework 1.0 SP1
- Microsoft .NET Framework 1.0 SP2
This article was previously published under Q321542 SYMPTOMS When you use an XML document that contains an attribute or
an element with a decimal value such as 0.00001, the schema marks that
attribute or element as a decimal. If you use the DataSet.ReadXML method to read an XML file, and then you use the DataSet.WriteXML method to write the value back to the XML file, the output
contains a value in scientific notation. If you use the DataSet.ReadXML method again, you receive the following exception error
message: System.FormatException - Input string was not in
a correct format. CAUSEThe DataSet.WriteXML method internally calls the Decimal.ToString method when it writes decimal numbers. The Decimal.ToString method writes decimal numbers such as 0.00001 in scientific
notation. You cannot set the NumberStyles enumeration for the DataSet object to make for scientific notation be read as a decimal
value. Therefore, when you use the DataSet.ReadXML method to read the number back into a data set, a FormatException exception occurs.RESOLUTIONA supported hotfix is now available from Microsoft, but it is only intended to correct the problem that is described in this article. Only apply it to systems that are experiencing this specific problem. This hotfix may receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next service pack that contains this hotfix. To resolve this problem immediately, contact Microsoft Product Support Services to obtain the hotfix. For a complete list of Microsoft Product Support Services telephone numbers and information about support costs, visit the following Microsoft Web site: Note In special cases, charges that are ordinarily incurred for support calls may be canceled if a Microsoft Support Professional determines that a specific update will resolve your problem. The usual support costs will apply to additional support questions and issues that do not qualify for the specific update in question. The English
version of this hotfix has the file attributes (or later file attributes) that
are listed in the following table. The dates and times for these files are
listed in coordinated universal time (UTC). When you view the file information,
it is converted to local time. To find the difference between UTC and local
time, use the Time Zone tab in the Date and Time tool in
Control Panel.
Date Time Version Size File name
-----------------------------------------------------------
03-May-2002 02:17 1.0.3705.271 1,294,336 System.xml.dll WORKAROUND You can mark the value as a string instead of as a decimal
in the schema, and you can manually convert the string to a decimal number
value by using the Decimal.Parse method with the AllowExponent NumberStyles flag.STATUSMicrosoft
has confirmed that this is a problem in the Microsoft products that are listed
in the "Applies to" section.
Modification Type: | Minor | Last Reviewed: | 10/11/2005 |
---|
Keywords: | kbHotfixServer kbQFE kbvs2002sp1sweep kbProgramming kbSchema kbXML kbQFE kbbug kbfix KB321542 kbAudDeveloper |
---|
|