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