ChangeLog 2.7 KB

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