[Mono-bugs] [Bug 52240][Blo] Changed - XML Serilaizer fails when DataSet name contains spaces
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Tue, 16 Dec 2003 11:10:37 -0500 (EST)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by ginga@kit.hi-ho.ne.jp.
http://bugzilla.ximian.com/show_bug.cgi?id=52240
--- shadow/52240 2003-12-16 10:40:37.000000000 -0500
+++ shadow/52240.tmp.3241 2003-12-16 11:10:37.000000000 -0500
@@ -2,15 +2,15 @@
Product: Mono/Class Libraries
Version: unspecified
OS: All
OS Details:
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Blocker
-Component: System.XML
+Component: System.Data
AssignedTo: mono-bugs@ximian.com
ReportedBy: mordechait@mainsoft.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
Cc:
@@ -61,6 +61,29 @@
xmlns:xs="http://www.w3.org/2001/XMLSchema"/>
</xsd:complexType>
</xs:element>
</xsd:schema>
<this my data set name xmlns=""/>
</DataSet>
+
+------- Additional Comments From ginga@kit.hi-ho.ne.jp 2003-12-16 11:10 -------
+This looks DataSet problem.
+
+using System;
+using System.Data;
+public class Test
+{
+ public static void Main ()
+ {
+ new DataSet ("this my data set name").WriteXml
+(Console.Out);
+ }
+}
+
+MS.NET:
+$ ./dataset-name.exe
+<this_x0020_my_x0020_data_x0020_set_x0020_name />
+
+Mono:
+$ mono dataset-name.exe
+<this my data set name />
+