ChangeLog 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. 2006-04-19 Senganal T <[email protected]>
  2. * XmlDataDocument.cs :
  3. - Use encoded names for DataSet schema.
  4. - StringToElement : Return 'null' if the value is empty string
  5. or null.
  6. - OnDataTableRowAdded : Add the row elements to the tablenode if
  7. they are not already added.
  8. 2004-06-06 Atsushi Enomoto <[email protected]>
  9. * XmlDataDocument.cs :
  10. - It was not handling SimpleContent. This fixes bug #56951.
  11. - It was not converting values into DataType of the DataColumn.
  12. 2004-05-17 Atsushi Enomoto <[email protected]>
  13. * XmlDataDocument.cs :
  14. Removed MonoTODO from implemented members and private members.
  15. Updated OnNodeRemoved(), OnDataRowDeleted() and OnDataTableRollback()
  16. to match with current implementation.
  17. 2004-05-13 Atsushi Enomoto <[email protected]>
  18. * XmlDataDocument.cs : Removed row-element mapping. Just use new
  19. DataRow.DataElement property. Added/removed some comments.
  20. 2004-05-12 Atsushi Enomoto <[email protected]>
  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. "Removed" and "Rollback" events are still TODO.
  36. 2004-04-13 Atsushi Enomoto <[email protected]>
  37. * XmlDataDocument.cs:
  38. Load() should not read xml multiple time nor expect BaseURI (and it
  39. indicates the resource location is readable).
  40. Simplified event handling logic, and fixed missing event removal.
  41. Quick hack to avoid new XmlDataDocument(DataSet ds).Load ().
  42. Enabled CreateNavigator() that was commented out.
  43. 2004-03-18 Atsushi Enomoto <[email protected]>
  44. * XmlDataDocument.cs : Fixed incorrect cast in OnDataTableRowAdded().
  45. This fixes bug #54505.
  46. 2003-07-31 Duncan Mak <[email protected]>
  47. * XmlDataDocument.cs (BaseURI):
  48. (InnerXml):
  49. (IsReadOnly):
  50. (this):
  51. (LocalName):
  52. (Name):
  53. (OwnerDocument):
  54. (WriteContentTo):
  55. (WriteTo): Removed, these do not need to be redefined, as
  56. they are inherited from XmlDocument already.
  57. (CreateElement): simplifed the
  58. implementation. XmlDocument.CreateElement can handle String.Empty
  59. and null just fine.
  60. 2003-03-12 Alan Tam <[email protected]>
  61. * XmlDataDocument.cs: Still need to print tag for the DataSet if there
  62. is no data at all.
  63. 2003-01-27 Ville Palo <[email protected]>
  64. * ChangeLog: Added this file.
  65. * XmlDataDocument.cs: Some little fixes.