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