merge -r 61110:61111
[mono.git] / mcs / class / System.Data / System.Xml / ChangeLog
1 2006-04-19  Senganal T <tsenganal@novell.com>
2
3         * XmlDataDocument.cs : 
4                 - Use encoded names for DataSet schema.
5                 - StringToElement : Return 'null' if the value is empty string
6                 or null.
7                 - OnDataTableRowAdded : Add the row elements to the tablenode if
8                 they are not already added.
9
10 2004-06-06  Atsushi Enomoto <atsushi@ximian.com>
11
12         * XmlDataDocument.cs :
13           - It was not handling SimpleContent. This fixes bug #56951.
14           - It was not converting values into DataType of the DataColumn.
15
16 2004-05-17  Atsushi Enomoto <atsushi@ximian.com>
17
18         * XmlDataDocument.cs :
19           Removed MonoTODO from implemented members and private members.
20           Updated OnNodeRemoved(), OnDataRowDeleted() and OnDataTableRollback()
21           to match with current implementation.
22
23 2004-05-13  Atsushi Enomoto <atsushi@ximian.com>
24
25         * XmlDataDocument.cs : Removed row-element mapping. Just use new
26           DataRow.DataElement property. Added/removed some comments.
27
28 2004-05-12  Atsushi Enomoto <atsushi@ximian.com>
29
30         * XmlDataDocument.cs : Radical design change.
31           - GetElementFromRow() must return "detached" element, even if it is
32             not added to table's Rows.
33           - Introduced XmlDataElement class to map element (this class itself)
34             and DataRow _always_ . It is impossible to map *all* DataRows 
35             to/from elements only in XmlDataDocument API, since DataRow can 
36             be created separate from it (i.e. by table.NewRow()).
37           - Removed unreliable GetElementsByTagName() dependency from most
38             of the code, since users might create elements that has the same
39             name of any tables (that is possible especially unmapped elements).
40           - Adding/Removing delegates on every event action is unnecessary.
41             Use just flags.
42           - For Load(), just using base.Load() will do most of the job.
43           - Attributes and SimpleContents are not handled properly.
44
45           "Removed" and "Rollback" events are still TODO.
46
47 2004-04-13  Atsushi Enomoto <atsushi@ximian.com>
48
49         * XmlDataDocument.cs:
50           Load() should not read xml multiple time nor expect BaseURI (and it
51           indicates the resource location is readable).
52           Simplified event handling logic, and fixed missing event removal.
53           Quick hack to avoid new XmlDataDocument(DataSet ds).Load ().
54           Enabled CreateNavigator() that was commented out.
55
56 2004-03-18  Atsushi Enomoto <atsushi@ximian.com>
57
58         * XmlDataDocument.cs : Fixed incorrect cast in OnDataTableRowAdded().
59           This fixes bug #54505.
60
61 2003-07-31  Duncan Mak  <duncan@ximian.com>
62
63         * XmlDataDocument.cs (BaseURI):
64         (InnerXml):
65         (IsReadOnly):
66         (this):
67         (LocalName):
68         (Name):
69         (OwnerDocument):
70         (WriteContentTo):
71         (WriteTo): Removed, these do not need to be redefined, as
72         they are inherited from XmlDocument already.
73
74         (CreateElement): simplifed the
75         implementation. XmlDocument.CreateElement can handle String.Empty
76         and null just fine.
77
78 2003-03-12  Alan Tam <Tam@SiuLung.com>
79
80         * XmlDataDocument.cs: Still need to print tag for the DataSet if there
81         is no data at all.
82         
83 2003-01-27  Ville Palo <vi64pa@koti.soon.fi>
84
85         * ChangeLog: Added this file.
86         * XmlDataDocument.cs: Some little fixes.