ChangeLog 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715
  1. 2005-11-26 Konstantin Triger <[email protected]>
  2. * ConflictOption.cs: TARGET_JVM include.
  3. 2005-11-11 Senganal T <[email protected]>
  4. * ConflictOption.cs (new file)
  5. - Added ConflictOption Enumeration
  6. * DataTableReader.cs
  7. * IDataRecord2.cs
  8. - GetProviderSpecificFieldType : Corrected the method name
  9. 2005-11-11 Senganal T <[email protected]>
  10. * DataSet.cs : Added the SchemaSerializationMode Property for NET_2_0
  11. compatibility.
  12. * SchemaSerializationMode.cs : Added SchemaSerializationMode Enumeration
  13. for NET_2_0 compatibility.
  14. Fixes bug #76517
  15. 2005-10-20 Atsushi Enomoto <[email protected]>
  16. * XmlSchemaWriter.cs : escape names in the schema with XmlConvert.
  17. Fixed bug #76480.
  18. 2005-10-14 Sureshkumar T <[email protected]>
  19. * DataView.cs: Correct multiple throwing of events. Patch from
  20. Marc Haisenko.
  21. (RowStateFilter): Fire ListChangedEvent.
  22. (ApplyDefaultSort): Fire ListChangedEvent.
  23. (CompleteLastAdded): call UpdateIndex to remove the row from rowCache.
  24. (IBindingList.Find): Implemented.
  25. 2005-10-11 Sureshkumar T <[email protected]>
  26. * DataView.cs (IBindingList): Implemented methods for IBindingList interface.
  27. 2005-09-26 Lluis Sanchez Gual <[email protected]>
  28. * DataSet.cs: In IXmlSerializable.GetSchema, return null again for
  29. untyped datasets. Fixes bug #76101.
  30. 2005-09-21 Boris Kirzner <[email protected]>
  31. * DataRow.cs: Fixes for index updating.
  32. * DataTable.cs:
  33. - Reset case-sensitive indexes also if their filter contains columns
  34. of type string.
  35. - Use GetIndex instead of FindIndex, so the indexes created in Select()
  36. are reused.
  37. * RelatedDataView.cs: implement IExpression.Equals() and GetHashCode().
  38. 2005-09-20 Sureshkumar T <[email protected]>
  39. * DataView.cs (Sort): Apply default Sorting Order if Sort property
  40. is reset to null. Sort property handles this. Patch from Marc.
  41. * DataTable.cs (ParseSortString): Patch from Marc Haisenko for
  42. allowing [ & ] in DataView.Sort string.
  43. 2005-09-01 Boris Kirzner <[email protected]>
  44. * System.Data/DataRowCollection.cs: indexes should be updated even if
  45. EnforceConstraints is false. Check for EnforceConstraints in
  46. ValidateDataRowInternal.
  47. 2005-08-08 Gert Driesen <[email protected]>
  48. * DataView.cs: Changed accessibility of dataTable, rowState and
  49. rowCache field to internal to fix public API. Assigned TypeConverter
  50. to Table property.
  51. * ForeignKeyConstraint.cs: IsConstraintViolated is now internal.
  52. * Constraint.cs: IsConstraintViolated is now internal.
  53. * UniqueConstraint.cs: IsConstraintViolated is now internal.
  54. 2005-08-05 Atsushi Enomoto <[email protected]>
  55. * XmlSchemaDataImporter.cs : When "dataset element" has identity
  56. constraints, then first reserve constraints room for them and then
  57. process elements, skipping pkey creation if there is already
  58. reserved one. Fixed bug #75711.
  59. 2005-08-05 Atsushi Enomoto <[email protected]>
  60. * XmlDataInferenceLoader.cs : in GetElementMappingType(), don't guess
  61. the same (QNamed) element again when it was already evaluated as
  62. not simple type. Fixed one part of bug #75711.
  63. 2005-08-02 Boris Kirzner <[email protected]>
  64. * XmlSchemaDataImporter.cs : Data relations should be processed after the
  65. keys, so no redundant constraints created while relations processing.
  66. 2005-07-25 Boris Kirzner <[email protected]>
  67. * FillOptions.cs, ConflictOptions.cs, UpdateOptions.cs:
  68. added ifdef TARGET_JVM.
  69. 2005-07-22 Sureshkumar T <[email protected]>
  70. * DataViewSettingCollection.cs, DataTableCollection.cs,
  71. DataSet.cs, DataView.cs, DataColumn.cs, ForeignKeyConstraint.cs,
  72. DataRelationCollection.cs, UniqueConstraint.cs, DataTable.cs,
  73. DataColumnCollection.cs, DataRelation.cs, DataSet.cs:
  74. - updated attributes & attribute descriptions to match with
  75. masterinfos.
  76. * DataView.cs: changed protected members
  77. rowstate,rowcache,dataTable to protected internal.
  78. * Constraint.cs, ForeignKeyConstraint.cs, UniqueConstraint.cs:
  79. changed InConstraintViolated to protected internal.
  80. * ConflictOptions.cs, UpdateOptions.cs, FillOptions.cs: enclosed
  81. with NET_2_0 define.
  82. 2005-07-21 Sureshkumar T <[email protected]>
  83. * ForeignKeyConstraint.cs:
  84. - IsConstraintViolated (): no matter what EnforceConstraints is,
  85. this function now honestly validates. It is upto the caller to run
  86. this or not.
  87. - AddToConstraintCollectionSetup (): AssertConstraint according to
  88. EnforceConstraints.
  89. 2005-07-21 Boris Kirzner <[email protected]>
  90. * ForeignKeyConstraint.cs - IsConstraintViolated() should check also for Table.EnforceConstraints.
  91. * DataTable.cs - EnforceConstraints becomes internal so it can be used by ForeignKeyConstraint.
  92. 2005-07-19 Sureshkumar T <[email protected]>
  93. * DataTable.cs - CopyConstraints (): copy constraints only if it
  94. does not exist.
  95. * DataSet.cs - Copy ():
  96. - use activator.CreateInstance to create a typed dataset.
  97. - copy tables if target does not exist, otherwise, just add rows.
  98. - add relation only if it does not exists.
  99. Typed datasets create the constraints & relations through
  100. constructors. Fixes bug #75211.
  101. 2005-07-14 Sureshkumar T <[email protected]>
  102. * DataView.cs: Patch from Marc Haisenko to throw descriptive error
  103. message when accessing Item, with invalid index.
  104. 2005-07-14 Sureshkumar T <[email protected]>
  105. reapplied patch from Marc Haisenko.
  106. * DataView.cs: Patch from Marc Haisenko that ensures that rowCache
  107. is never null.
  108. 2005-07-13 Sureshkumar T <[email protected]>
  109. * DataRelationCollection.cs: adding a relation with same set of
  110. parent columns & child columns, should not be allowed.
  111. 2005-07-08 Sureshkumar T <[email protected]>
  112. * DataTableReader.cs: GetSchemaTable: DataType column should be
  113. passed a type of Type.
  114. * DataRow.cs: Load : Fired necessary events.
  115. * DataTable.cs: LoadDataRow (object [], LoadOption): Fired
  116. necessary events.
  117. 2005-06-28 Sureshkumar T <[email protected]>
  118. * DataRow.cs: Delete (): if row is detached, do nothing.
  119. fixes bug #75388.
  120. 2005-06-22 Sureshkumar T <[email protected]>
  121. * DataRow.cs: Added method MergeValuesToRow copy merge two rows
  122. according to the merge rules.
  123. * MergeManager.cs: (MergeRow): use MergeValuesToRow
  124. API. CopyValuesToRow simply makes the target row same as source
  125. row. Rather, MergeValuesToRow merges with the target row according
  126. to the merge rules.
  127. 2005-06-19 Konstantin Triger <[email protected]>
  128. * DataSet.cs: Fixed ReadXml to work with IXmlSerializable
  129. 2005-06-17 Jordi Mas i Hernandez <[email protected]>
  130. * DataViewManager.cs: fixes exception and creates DataView
  131. 2005-06-15 Sureshkumar T <[email protected]>
  132. * DataRow.cs: CheckChildRows: cascade parent changes to child rows
  133. only if there is a change in columns of the fk constraint.
  134. 2005-06-14 Sureshkumar T <[email protected]>
  135. * DataSet.cs: GetChanges: if row is deleted, get parent rows based
  136. on original version. fixes bug #75227.
  137. 2005-06-13 Sureshkumar T <[email protected]>
  138. * DataRowCollection.cs: Find (keys, version): Added an overload to
  139. find keys matching given DataViewRowState filter. Used in
  140. DataSet.Merge and DataTable.LoadDataRow.
  141. * DataTable.cs: LoadDataRow (values, LoadOption): Use
  142. DataRowCollection.Find (object [], DataViewRowState) overload.
  143. * DataRow.cs:
  144. - CopyValuesToRow: Create target "records" out of loop. Records
  145. should be created once, not for each column. Dispose Unused target
  146. records.
  147. * MergeManager.cs:
  148. - MergeRow: Find rows with matching original records. If not,
  149. select with current values.
  150. - MergeRow: While adding new row, use NewNotInitializedRow.
  151. * ForeignKeyConstraint.cs: IsConstraintViolated: should not check
  152. if EnforceConstraints is false.
  153. 2005-06-10 Sureshkumar T <[email protected]>
  154. * DataRow.cs: CopyValuesToRow: if orginal == current, don't create
  155. a new current record.
  156. * DataSet.cs: GetChanges :Temporarily disable EnforceConstraints.
  157. * MergeManager.cs: Merge: Temporarily disable
  158. EnforceConstraints. Patch from [email protected] (George
  159. Barbarosie).
  160. 2005-06-09 Jordi Mas i Hernandez <[email protected]>
  161. * DataView.cs: fixes GetListName
  162. 2005-06-02 Atsushi Enomoto <[email protected]>
  163. * XmlSchemaConstants.cs,
  164. XmlSchemaDataImporter.cs,
  165. XmlSchemaWriter.cs : AutoIncrementStep support. Patch partly by
  166. George Barbarosie. Fixed bug #75121.
  167. * XmlSchemaMapper.cs : it is not used anymore, so just removed.
  168. 2005-05-31 Boris Kirzner <[email protected]>
  169. * DataRow.cs : SetParentRow on Detached row with no Default version throws an exception.
  170. 2005-05-29 Konstantin Triger <[email protected]>
  171. * This patch fixes #74813
  172. * DataView.cs: rework the CreateChildView to receive the index into the indexed row array, rowState became protected to be initialized from RelatedDataView
  173. * DataRowView.cs: movo the logic of creating the child view to the DataView
  174. * RelatedDataView.cs: perform correct init.
  175. 2005-05-25 Sureshkumar T <[email protected]>
  176. * DataTable.cs: Reworked DataTable.LoadDataRow method after
  177. regressions caused by Index redesign.
  178. * DataRow.cs: Load : reworked.
  179. 2005-05-25 Konstantin Triger <[email protected]>
  180. * ISafeDataRecord.cs: Added GetDateTimeSafe method, the interface was made derived from IDataRecord
  181. 2005-05-22 Konstantin Triger <[email protected]>
  182. * DataTable.cs, DataColumn.cs: in continuation to the previous fix - moving the common logic to 1 function and throwing the correct exception in any flow
  183. 2005-05-20 Sureshkumar T <[email protected]>
  184. * DataTable.cs: CreateRecord :value should be set to auto
  185. increment value or default value if the given value is null.
  186. 2005-05-16 Konstantin Triger <[email protected]>
  187. * DataTable.cs: In DataTable.LoadDataRow with LoadOption - reverting the search order back to Original -> Current (by Suresh request)
  188. 2005-05-16 Konstantin Triger <[email protected]>
  189. * DataRow.cs, DataTable.cs: code under net_2_0 changed to use the new interface
  190. * DataTable.cs: Added CompareRecords, which compares records in column order
  191. 2005-05-16 Sureshkumar T <[email protected]>
  192. * DataRow.cs:
  193. * DataTable.cs: quick fix to make build 2.0 profile (follow up for
  194. check in 2005-05-16). Merge with previous changes.
  195. 2005-05-11 Sureshkumar T <[email protected]>
  196. fix for "import row does not import deleted records"
  197. * UniqueConstraint.cs: Make a way to access value even from a
  198. deleted record. deleted records are added to the collection by
  199. ImportRow method.
  200. * DataRow.cs:
  201. - Added restriction-less methods GetValue to fetch a
  202. value even if it is in deleted state.
  203. - If a row is detached, don't try to delete it from indexes.
  204. - sanity check for record_index in CopyValuesToRow method
  205. 2005-05-05 Sureshkumar T <[email protected]>
  206. * DataTableReader.cs: Implemented Delete handler and move the
  207. current pointer accordingly.
  208. 2005-05-04 Sureshkumar T <[email protected]>
  209. * DataTableReader.cs: Added event handlers to make reader stable
  210. when the datasource is modified. Thanks to Umadevi for giving the
  211. review comments for this implementation.
  212. * DataTable.cs: Clear (): Raise TableCleared event.
  213. * DataTableClearEventArgs.cs: Args for DataTableClearEventHandler.
  214. * DataTableClearEventHandler.cs: Handler for DataTable.TableClear
  215. event.
  216. * DataRow.cs: AcceptChanges: raise row changing & row changed
  217. events.
  218. * DataRowCollection.cs: Clear : remove rows from indexes
  219. 2005-05-02 Atsushi Enomoto <[email protected]>
  220. * XmlSchemaDataImporter.cs : XmlSchemaParicle might be XmlSchemaAny.
  221. This fixes bug #74784.
  222. 2005-04-29 Sureshkumar T <[email protected]>
  223. * DataTableReader.cs: removed use of _first. throw if given index
  224. is out of range of columns. Copy DataTable [] to local array so
  225. that not to be disturbed.
  226. 2005-04-27 Sureshkumar T <[email protected]>
  227. * DataTableReader.cs: Implemented most of the TODO.
  228. 2005-04-22 Sureshkumar T <[email protected]>
  229. * LoadOption.cs: Changed the enums. Keeping old values for
  230. migration.
  231. * DataTable.cs: Implemented methods Load and its overloads. Also
  232. implemented LoadDataRow.
  233. * DataRowCollection.cs: Added a variation of the Find method to
  234. return a row even if it is of state Deleted. This is required for
  235. DataTable.LoadDataRow method.
  236. * DataRow.cs: Implemented internal helper method Load for loading
  237. values from an object array and given an LoadOption (2.0 feature).
  238. * DataRowAction.cs: Added few more enums for .net 2.0. Sorted
  239. alphabetically.
  240. 2005-05-16 Konstantin Triger <[email protected]>
  241. * UniqueConstraint.cs : IsNull check is relevant for rows having default row version.
  242. * DataTable.cs : The row should be validated when imported
  243. * DataRowCollection.cs : if the row does not contain Proposed neither Current version, it's irrelevant for validation
  244. 2005-04-26 Boris Kirzner <[email protected]>
  245. * UniqueConstraint.cs :
  246. - Add indication whenever the constraint belongs to collection.
  247. - Calculation of IsPrimaryKey simplified.
  248. - If constraint is based on single column, the column becomes unique.
  249. - Use boolean IsConstraintViolated() instead of AssertConstraint().
  250. - Use Index.Duplicates to proper exception message formatting.
  251. - AssertConstraint(DataRow) changed to suite new indexes interface.
  252. - Added CanRemoveFromCollection method.
  253. - Contains() method renamed to IsColumnContained().
  254. * RelatedDataView.cs : added new class.
  255. * MergeManager.cs :
  256. - Reset indexes after merge.
  257. - Add new tables when row array is merged into dataset.
  258. - Clean proposed record in MergeRow.
  259. - Inherit nesting on creating new relations in target data set.
  260. - Avoid double loop on constraints collection.
  261. * Locale.cs : added new class.
  262. * ISafeDataRecord.cs : added new interface.
  263. * Index.cs : commented out. Index implementation moved to System.Data.Common.
  264. * ForeignKeyConstraint.cs :
  265. - No more use of childColumnsExtended since new indexes allow duplicate records.
  266. - Constraints can not be created on expression columns.
  267. - Removed unnecessary delegation.
  268. - Use boolean IsConstraintViolated() instead of AssertConstraint().
  269. - Use proper exception message formatting.
  270. - Contains() method renamed to IsColumnContained().
  271. * DataViewRowState.cs : use enum members to simplify notation.
  272. * MergeManager.cs : implemented RelationCollectionChanged().
  273. * DataView.cs : new implementation.
  274. * DataTableCollection.cs :
  275. - Added boundary check in indexer.
  276. - More accurate handling in AddRange().
  277. - Raise event in Remove().
  278. * DataTable.cs :
  279. - Hold primary key as constraint.
  280. - Added accurate handling of DefaultView.
  281. - Hold DataRowBuilder per table.
  282. - Proper exception messages if enforce Constraints is violated.
  283. - If there is no rows, Compute() returns DBNull.
  284. - Use DataRow properties instead of private members.
  285. - CopyProperties() fixed.
  286. - Raise proper events in EndInit().
  287. - Proper order of violation checks in EndLoadData().
  288. - Create array of rows using NewRowArray().
  289. - ImportRow handles rows according to their versions.
  290. - LoadDataRow make use of records (instead of raw object array).
  291. - Added and implemented LoadDataRow() that gets IDataRecord as a parameter (used in Fill)
  292. - Select() uses indexes filtering and sorting ability (instead of "loop-throw-sort" approach).
  293. - Removed redundant RowSorter and Sortable column classes.
  294. - ParseSortString() fixed to threat bracketed column names.
  295. - Table holds collection of property descriptors.
  296. * DataSet.cs :
  297. - Reset table case sensitive indexes on CaseSensitive change.
  298. - EnforceConstraints update logic moved to internal method (used by DataTable).
  299. - InAddChangedRow first add row and than copy values for proper handling of default values.
  300. * DataRowView.cs :
  301. - Changed private member names to suite name convention.
  302. - CancelEdit() fixed.
  303. - CreateChildView() delegates to DataView.
  304. - IsNew fixed.
  305. - Proper exception messages in indexers.
  306. - RowVersion uses DataView.
  307. - GetProperties() delegates to corresponding table if needed.
  308. * DataRowCollection.cs :
  309. - Common Add() logic moved to AddInternal() (used also by DataTable).
  310. - Removed redundant check from Contains().
  311. - Dalegate Find() calls when possible.
  312. - Remove() fixed.
  313. - RomoveAt() delegates to Remove().
  314. - Optimized constraints check in row validation.
  315. * DataRelationPropertyDescriptor.cs : added new class.
  316. * DataRelationCollection.cs :
  317. - Indexers fixed.
  318. - Fixed order of actions in AddCore().
  319. - RemoveCore() also delegates to base.
  320. - Add relation to dataset also in AddCore().
  321. - Remove relation from dataset also in RemoveCore().
  322. - InTransition hold a data relation so we can properly identify the "in transition" state.
  323. - Added threat of parent and child table s property descriptors in Add().
  324. - Common Add() logic moved to AddCore().
  325. - Clear() fixed.
  326. - Remove() threats "in transition" state properly.
  327. - Remove methods delegate to single implementation.
  328. * DataColumnPropertyDescriptior.cs :
  329. - Added new constructor.
  330. - Commented out redundant method.
  331. * DataColumnCollection.cs :
  332. - Boundary check in indexer.
  333. - RegisterName and UnregisterName become internal (used also by DataColumn).
  334. - Fixed AddRange().
  335. - Fixed CanRemove().
  336. - Rethrow correct exception in Clear();
  337. - Change in collection resets parent table property descriptors.
  338. - Added PostEndEdit() helper method (used by DataTable).
  339. * DataColumn.cs :
  340. - Private member names changed to suite name convention.
  341. - Created method for CanAutoIncrement() logic.
  342. - Proper handling of column name update.
  343. - Proper exception messages on expression update.
  344. - Proper namespace handling (delegates to table when needed).
  345. - Removed redundant check in Unique update.
  346. - Implemented internal Clone().
  347. - GetParentRalation() and GetChildRelation() become private.
  348. * Constraint.cs :
  349. - Added abstract methods (implemented in UniqueConstraint and ForeignKeyConstraint).
  350. - Simplified index update.
  351. * ConstraintCollection.cs :
  352. - Use Locale instead of CaseSensitive in column names comparison.
  353. - Removed #ifdef
  354. - Rethrow correct exception type in Add().
  355. - Proper update of table primary key in Add().
  356. - Delegate CanRemove() to constraint.
  357. - Remove table primary key in Clear();
  358. - Delegate "can remove" check to constraint in Remove().
  359. - Removed unnecessary methods and properties.
  360. * DataRow.cs :
  361. - RowSate becomes calculated property.
  362. - Use properties instead of private members where possible.
  363. - Fixed indexer.
  364. - Fixed order of actions in ItemArray update.
  365. - Fixed DetachRow().
  366. - Added ImportRecord() method.
  367. - Removed redundant SetValuesFromDataRecord().
  368. - Fixed IndexFromVersion().
  369. - Added VersionFromIndex() method. Returns row version the passed record index corresponds to.
  370. - Fixed AcceptChanges().
  371. - Fixed creating proposed version in BeginEdit();
  372. - Added record disposal in Delete().
  373. - Fixed CheckChildRows().
  374. - EndEdit() fixed. Checks for readonly. Uses straight flow instead of "try and fix if fail" approach.
  375. - GetChildRows() and GetPrarentRows() rewrited. Use records and indexes for rows lookup.
  376. - GetColumnError() delegates to another implementation.
  377. - HasVersion() fixed.
  378. - RejectCahnges checks on child rows before passing through.
  379. - SetParentRow() fixed. Create relation collection if needed. Use typed data container value copy.
  380. - CopyErrors() logic moved to separate method (used also by DataTable).
  381. * ExpressionElement.cs : added new class.
  382. * Res.cs : added new class.
  383. 2005-04-20 Jordi Mas i Hernandez <[email protected]>
  384. * DataViewManager.cs: implements TypedList.GetListName used in SWF
  385. 2005-04-19 Atsushi Enomoto <[email protected]>
  386. * DataRowView.cs : indexer should access to DataRow with proper
  387. DataRowVersion. Fixed bug #74650.
  388. 2005-04-18 Sureshkumar T <[email protected]>
  389. * DataRow.cs: if there are no mapping fields, fill with default
  390. value.
  391. 2005-04-17 Atsushi Enomoto <[email protected]>
  392. * DataView.cs : Delete() should not try to remove row twice.
  393. Fixed bug #74631.
  394. 2005-04-13 Atsushi Enomoto <[email protected]>
  395. * DataTable.cs : Use GetRowType() for the base of the returning array
  396. type of Select(). Fix by Gerhard Rittweger.
  397. * CustomDataClassGenerator.cs : Fixed slightly harmless wrong code.
  398. 2005-04-13 Atsushi Enomoto <[email protected]>
  399. * CustomDataClassGenerator.cs : custom relation was not added to
  400. Relations property. The second entry of bug #69276 was fixed.
  401. Patch by Daniel Rodriguez.
  402. 2005-04-07 Lluis Sanchez Gual <[email protected]>
  403. * DataRowCollection.cs: Fix the signature of the Add method
  404. for NET_2_0.
  405. 2005-03-16 Atsushi Enomoto <[email protected]>
  406. * DataRow.cs : on importing row, it was copying data from incorrect
  407. DataRow. This fixes bug #73288.
  408. 2005-03-07 Jackson Harper <[email protected]>
  409. * DataViewManagerListItemTypeDescriptor.cs: Implement missing
  410. features. These are needed for System.Windows.Forms databinding.
  411. 2005-02-25 Atsushi Enomoto <[email protected]>
  412. * DataColumn.cs : setting negative value on MaxLength of SimpleContent
  413. column is still valid.
  414. 2005-02-15 Atsushi Enomoto <[email protected]>
  415. * XmlSchemaWriter.cs : new file for outputting XmlSchema.
  416. * DataSet.cs : removed rewritten code in XmlSchemaWriter.
  417. * XmlConstants.cs : added UseCurrentCulture constant.
  418. * DataTable.cs :
  419. Use new Xml Schema writer.
  420. Use XmlSchemaDataImporter as we use in DataSet.
  421. 2005-02-10 Atsushi Enomoto <[email protected]>
  422. * DataView.cs, DataRowView.cs : Fixed bug #72421. CreateChildView()
  423. should target only child rows.
  424. 2005-02-03 Atsushi Enomoto <[email protected]>
  425. * DataViewManager.cs: misuse of ReadStartElement(string).
  426. * DataRowView.cs : removed some MonoTODO.
  427. 2005-02-02 Sureshkumar T <[email protected]>
  428. Ankit Jain <[email protected]>
  429. * DataColumn.cs: throw exception if the column is part of a
  430. relationship, when chaning the data type. Added methods
  431. "GetParentRelation ()" and "GetChildRelation ()" get the relation
  432. which contains the current column
  433. * DataRelation.cs: Added method "Contains (DataColumn)" to check
  434. whether the relation contains the given column.
  435. fixes nunit failure: DataRelationTest.InvalidConstraintException2.
  436. 2005-02-02 Sureshkumar T <[email protected]>
  437. * DataColumnCollection.cs: implemented todo item "check for
  438. constraints" when removing columns from table.
  439. * DataRowCollection.cs: Clear (): don't have to throw child key
  440. constraint exception when the child table does not have any
  441. rows. safe to remove parent rows.
  442. * UniqueConstraint.cs: added method "Contains (DataColumn)" to
  443. check whether a column is part of UniqueConstraint.
  444. * ForeignKeyConstraint.cs: added method "Contains (DataColumn,
  445. lookInParent)" to check whether a column is part of foreignkey.
  446. fixes nunit failure: DataTableTest.ClearTest ()
  447. 2005-02-02 Sureshkumar T <[email protected]>
  448. * ForeignKeyConstraint.cs: validating columns: move checking
  449. "tables are of same dataset" before "checking column types".
  450. fixes nunit failure: ForeignKeyConstraint.CtorExceptions.
  451. 2005-02-02 Atsushi Enomoto <[email protected]>
  452. * DataViewManager.cs : let's just use StringWriter instead of
  453. XmlTextWriter (to avoid empty tag string mismatch annoyance.)
  454. * DataView.cs : implemented BeginInit() and EndInit(). Don't update
  455. rows during init phase until EndInit() is invoked. During init phase,
  456. just hold properties such as Sort that affects on rows.
  457. 2005-02-02 Atsushi Enomoto <[email protected]>
  458. * DataTableCollection.cs : (RemoveAt) just use IndexOutOfRangeException.
  459. 2005-02-02 Atsushi Enomoto <[email protected]>
  460. * DataView.cs : DataRowView.EndEdit() raises ItemMoved event.
  461. set_Table clears Sort and RowFilter.
  462. 2005-02-02 Atsushi Enomoto <[email protected]>
  463. * DataView.cs :
  464. - Clear() should clear AddNew cache.
  465. - Open() invokes Reset().
  466. - ConstraintCollectionChanged() itself does not invoke OnListChanged().
  467. - Reset() does not Open, Close and Update Index.
  468. - UpdateIndex() can be invoked even if it has no table.
  469. - Reset event is invoked always after actual query to table.
  470. - set_Table should raise PropertyDescriptorChanged event.
  471. 2005-02-02 Atsushi Enomoto <[email protected]>
  472. * DataView.cs : ColumnCollectionChanged() is the event invoker (i.e.
  473. when overriden, no column change events are fired).
  474. 2005-02-02 Atsushi Enomoto <[email protected]>
  475. * DataView.cs : CancelEditRowView() and DeleteRowView() was incorrectly
  476. checking target tables. They also should raise events if required.
  477. 2005-02-02 Atsushi Enomoto <[email protected]>
  478. * DataView.cs : simplify code with UnsortedList.
  479. 2005-02-01 Atsushi Enomoto <[email protected]>
  480. * DataView.cs : Mostly reimplemented.
  481. - UpdateIndex() is invoked only when it is required (results in
  482. significant performance improvement).
  483. - Use SortedList and wrapper OptionalSortedList which switches
  484. between SortedList (with Sort) and UnsortedList (without Sort).
  485. - DataView itself now contains two collections for rowviews:
  486. Table rows based pool and AddNew() based cache. Consider those
  487. two collections in every members.
  488. - Reset() does not clear rows. Just invokes UpdateIndex().
  489. - Hook RowDeleting, ColumnChanging and ColumnChanged events in table
  490. which is required to handle state changes.
  491. - Reimplemented Find() and FindRows() because of internal changes.
  492. 2005-02-01 Atsushi Enomoto <[email protected]>
  493. * DataTable.cs : Fixed row comparer. Even if every of the sort target
  494. columns are identical for two rows, they should not be regarded as
  495. the same unless they are Object.ReferenceEquals.
  496. 2005-02-01 Atsushi Enomoto <[email protected]>
  497. * DataRowCollection.cs : on adding a row, should raise
  498. ChangingDataRow() as well as ChangedDataRow().
  499. 2005-01-31 Sureshkumar T <[email protected]>
  500. * DataRow.cs: SetParentRow (): use relation.ParentColumns &
  501. relation.ChildColumns instead of relation.ChildKeyConstraint.*
  502. because createConstrains flag may be false when creating data
  503. relations. Hack along with Ankit Jain.
  504. 2005-01-31 Atsushi Enomoto <[email protected]>
  505. * DataView.cs :some interface implementations.
  506. 2005-01-28 Atsushi Enomoto <[email protected]>
  507. * DataView.cs : Add to table only when the row is not in the table.
  508. 2005-01-28 Atsushi Enomoto <[email protected]>
  509. * DataView.cs : implemented FindRows() (btw we should not use
  510. DataTable since there are detached rows by AddNew().)
  511. 2005-01-28 Atsushi Enomoto <[email protected]>
  512. * DataView.cs :
  513. Code cleanup: privatify some members, remove unused methods.
  514. Some event-based invocation methods should not raise NotImplemented.
  515. 2005-01-28 Atsushi Enomoto <[email protected]>
  516. * DataSet.cs : ReadXml() became closer to MS behavior, being hacky.
  517. 2005-01-28 Atsushi Enomoto <[email protected]>
  518. * XmlSchemaDataImporter.cs : empty element is not regarded as a column.
  519. 2005-01-28 Atsushi Enomoto <[email protected]>
  520. * UniqueConstraint.cs : mostly reverted the previous patch + check
  521. IsPrimaryKey before validation.
  522. 2005-01-28 Atsushi Enomoto <[email protected]>
  523. * DataView.cs : Fixed duplicate insertion to Hashtable.
  524. * UniqueConstraint.cs : Unique constrained pair of columns could be
  525. nullable.
  526. 2005-01-27 Atsushi Enomoto <[email protected]>
  527. * DataView.cs :
  528. Don't do anything for Sort/ApplyDefaultSort/RowFilter/RowStateFilter
  529. when the same value is being set.
  530. Examined UpdateIndex() and marked FIXME where MS does not invoke it.
  531. Removed unused OnColumnChanged().
  532. Now store rowViewPool and reuse DataRowView objects.
  533. Optimized UpdateIndex() - avoid ArrayList. Avoid Haashtable.Rehash().
  534. 2005-01-27 Atsushi Enomoto <[email protected]>
  535. * DataViewSettings.cs : no MonoTODO anymore.
  536. * DataViewManager.cs : pass itself to new DataView() (new ctor).
  537. * DataRowView.cs : GetHashCode() returns its Row's hash.
  538. * DataTablePropertyDescriptor.cs : use new ctor().
  539. * DataView.cs : added new ctor()s that accept DataViewManager.
  540. 2005-01-27 Atsushi Enomoto <[email protected]>
  541. * DataView.cs, DataRowView.cs : AddNew() should not add the row to table
  542. (it is still detached). So handle those rows differntly.
  543. CancelEdit(), EndEdit() and Delete() propagates those events to
  544. DataView (and handle row collection).
  545. Eliminate "throw new Exception()".
  546. Don't catch all the exception thrown in ListChanged event.
  547. * DataTable.cs : made RowSorter as internal and use it in DataView.
  548. no need to pass DataRow[] to .ctor().
  549. 2005-01-27 Atsushi Enomoto <[email protected]>
  550. * DataTable.cs : don't create DefaultView unless it is required. It
  551. significantly improves performance. (i.e. DataView perf. is sick ;-)
  552. 2005-01-27 Atsushi Enomoto <[email protected]>
  553. * DataViewSetting.cs,
  554. DataViewSettingCollection.cs,
  555. DataViewManager.cs : implemented basic members.
  556. 2005-01-26 Atsushi Enomoto <[email protected]>
  557. * Node.cs, DataColumnPropertyDescriptor.cs, DataTable.cs :
  558. Eliminate "throw new Exception".
  559. 2005-01-25 Atsushi Enomoto <[email protected]>
  560. * DataRow.cs : (set_Item) RowNotInTableExeption check should be done
  561. regardless of index existence.
  562. 2005-01-25 Atsushi Enomoto <[email protected]>
  563. * DataTable.cs : use new IExpression.EvalBoolean() to avoid extraneous
  564. boxing.
  565. 2005-01-25 Sureshkumar T <[email protected]>
  566. * DataTable.cs: ImportRow :Do not add to rows collection if the
  567. import row is in detached state.
  568. 2005-01-25 Sureshkumar T <[email protected]>
  569. * DataRow.cs: CopyValuesToRow : set the column value with the
  570. default version of the given row.
  571. * DataTable.cs: ImportRow: Copy values before adding row.
  572. * DataSet.cs: AddChangedRow: Add the row to the table after
  573. copying values.
  574. Fixes bug #67317. Patch by Ankit Jain.
  575. 2005-01-25 Atsushi Enomoto <[email protected]>
  576. * DataRowView.cs : Fixed IsEdit to reflect correct status of DataRow.
  577. * DataRow.cs : Expose editing status internally.
  578. 2005-01-25 Atsushi Enomoto <[email protected]>
  579. * DataView.cs : missing attributes.
  580. 2005-01-24 Atsushi Enomoto <[email protected]>
  581. * DataRowView.cs : implemented CreateChildView().
  582. 2005-01-24 Atsushi Enomoto <[email protected]>
  583. * DataTable.cs, DataView.cs :
  584. Optimized DataView to compile only once RowFilter and Sort when
  585. those properties are set. To make it possible, extracted
  586. SortableColumn out of DataTable and added internal DataTable.Select()
  587. that accepts precompiled IExpression and SortableColumns[].
  588. 2005-01-24 Atsushi Enomoto <[email protected]>
  589. * DataColumn.cs : set_MaxLength is not allowed when it is mapped to
  590. SimpleContent. (However, it is weird but it never fails when we set
  591. ColumnMapping = MappingType.SimpleContent when we fhave MaxLength.)
  592. 2005-01-21 Atsushi Enomoto <[email protected]>
  593. * DataRow.cs : more Current -> Default fixes. Check if it should throw
  594. VersionNotFoundException. Patch by Ankit Jain.
  595. 2005-01-21 Atsushi Enomoto <[email protected]>
  596. * DataRow.cs : Default selects the right version for the current
  597. state of the row. Current is not always available. Also change
  598. that for GetParentRow(). Patch by Ankit Jain.
  599. 2005-01-21 Atsushi Enomoto <[email protected]>
  600. * DataTable.cs : CopyColumn() should copy AutoIncrement after
  601. DefaultValue, or it will raise an error in some cases.
  602. 2005-01-20 Atsushi Enomoto <[email protected]>
  603. * ConstraintCollection.cs : Add() should throw ArgumentException when
  604. the argument constraint fails validation.
  605. DataTable.cs : set_PrimaryKey should throw ArgumentException when
  606. the argument contains constraints which fail validation.
  607. 2005-01-19 Sureshkumar T <[email protected]>
  608. * DataRelationCollection.cs:
  609. Method Remove : Donot throw exception if DataRelation argument is
  610. null in DataRelationCollection.Remove method.
  611. Method RemoveAt : Exception should be IndexOutOfRangeException if
  612. row index is not in list range.
  613. Fixes nunit failures DataRelationCollection.Remove and
  614. DataRelationCollection.RemoveAt.
  615. 2005-01-19 Sureshkumar T <[email protected]>
  616. * ConstraintCollection.cs: Donot throw exception if constraints
  617. are null in AddRange method. Check for null before using the
  618. argument.
  619. fixes bug #69381.
  620. 2004-01-19 Atsushi Enomoto <[email protected]>
  621. * XmlDataInferenceLoader.cs,
  622. XmlDataReader.cs : Check if the XmlReader (node) represents DataSet
  623. or a table, reusing code block in XmlDataInferenceLoader.
  624. This fixes bug #60118.
  625. 2004-01-19 Atsushi Enomoto <[email protected]>
  626. * XmlDiffLoader.cs : Ankit Jain <[email protected]> has a conflicting
  627. patches and some good catches. Some attributes should be skipped,
  628. and loaded value must be typed.
  629. 2004-01-19 Atsushi Enomoto <[email protected]>
  630. * XmlConstants.cs,
  631. XmlDataInferenceLoader.cs,
  632. XmlDataReader.cs : use common const for http://www.w3.org/2000/xmlns/.
  633. * XmlDiffLoader.cs : It was not handling attributes. Fixed bug #70961.
  634. 2005-01-18 Sureshkumar T <[email protected]>
  635. Fix for bug #66838. This patch is submitted by "Ankit Jain"
  636. <[email protected]> and refactored.
  637. * DataRow.cs: Allows to set a parent row even if the row is in
  638. detached state.
  639. * DataRelation.cs: method "UpdateConstraints" is added to check
  640. and create missing keys when adding a relation. This is refactored
  641. approach from DataRelationCollection.Add method.
  642. * DataRelationCollection.cs: AddCore methods of all relation types
  643. are synchronized. A Check for existing constraints is
  644. done. Relation is added to the list only if all checks are passed.
  645. 2004-01-18 Atsushi Enomoto <[email protected]>
  646. * DataColumnCollection.cs : Clear() throws ArgumentException that
  647. wraps thrown innerException.
  648. * XmlSchemaDataImporter.cs : removed FIXMEs.
  649. 2004-01-12 Atsushi Enomoto <[email protected]>
  650. * DataSet.cs : When serializing DataTable, BuildSchema() is passed
  651. null relation collections.
  652. Quick fix for XmlSerializer deserialization. It does not require
  653. XML Schema included.
  654. 2004-01-11 Atsushi Enomoto <[email protected]>
  655. * DataSet.cs,
  656. CustomDataClassGenerator.cs :
  657. In DataSet class, IXmlSerializable.GetSchema() returns null.
  658. In strongly-typed class, it returns schema.
  659. 2004-01-07 Atsushi Enomoto <[email protected]>
  660. * XmlDataInferenceLoader.cs : test driver class should be excluded.
  661. 2004-12-01 Miguel de Icaza <[email protected]>
  662. * DataView.cs: Patch from Marc Haisenko that ensures that rowCache
  663. is never null.
  664. 2004-11-10 Atsushi Enomoto <[email protected]>
  665. * CustomDataClassGenerator.cs : generated foreign key constraint
  666. construction code was creating empty child columns and thus it
  667. was invalid. This fixes bug #69276 (patch by Martin Voelkle).
  668. 2004-11-02 Atsushi Enomoto <[email protected]>
  669. * CustomDataClassGenerator.cs : custom DataTable ctor should call
  670. InitializeFields(), and those DataColumns created by that method
  671. should take data type. This should fix bug #68972.
  672. 2004-10-15 Atsushi Enomoto <[email protected]>
  673. * DataSet.cs : Also clear UnhandledAttributes ArrayList before
  674. generating next attribute column schema. This fixes bug #68432.
  675. 2004-10-14 Umadevi S <[email protected]>
  676. * DataTable.cs : Corrected the Clone method to use Activator.CreateInstance so that the
  677. correct subclass is returned. This fixes bug #67631
  678. 2004-10-14 Umadevi S <[email protected]>
  679. * DataSet.cs : Corrected the Clone method to use Activator.CreateInstance so that the
  680. correct subclass is returned. This fixes bug #67627
  681. 2004-10-13 Atsushi Enomoto <[email protected]>
  682. * DataSet.cs : clear UnhandledAttributes ArrayList before generating
  683. next element column schema. This fixes bug #68256.
  684. 2004-10-12 Atsushi Enomoto <[email protected]>
  685. * DataSet.cs : now xs:schema contains xmlns="".
  686. This fixes bug #68008.
  687. 2004-10-12 Atsushi Enomoto <[email protected]>
  688. * DataSet.cs : DBNull attribute column should not be written as
  689. empty attribute. This fixes bug #68007.
  690. 2004-10-12 Atsushi Enomoto <[email protected]>
  691. * DataSet.cs, XmlConstant.cs, XmlSchemaDataImporter.cs:
  692. DataColumn.ReadOnly was not handled. This fixes bug #68005.
  693. Attribute defaultValue was not handled too.
  694. 2004-10-07 Atsushi Enomoto <[email protected]>
  695. * DataSet.cs :
  696. - When AllowDBNull is false on attribute DataColumn, its schema
  697. should contain use="required". This fixes bug #66792.
  698. - If MaxLength is set on attribute DataColumn, the mapped schema
  699. type should contain maxLength facet. This fixes bug #66793.
  700. 2004-10-04 Atsushi Enomoto <[email protected]>
  701. * DataSet.cs : For a row, when a relation is not nested, then it is
  702. still output target since it won't be written as a child of its
  703. parent. It fixes bug #66379.
  704. 2004-10-03 Atsushi Enomoto <[email protected]>
  705. * DataSet.cs : Attribute constraint field XPath must be written as
  706. @blah. This fixes bug #66366.
  707. 2004-09-28 Umadevi S <[email protected]>
  708. * DataRow.cs - checked for Enforceconstraints, while using indices to search for related rows
  709. 2004-09-24 Sureshkumar T <[email protected]>
  710. * DataSet.cs : Don't check constraints for dataset clear
  711. * DataRowCollection.cs : check for EnforceConstraints flag
  712. before checking foriegn key constraints in Clear method
  713. * DataTable.cs : Redundant checking removed in Clear method as it is
  714. checked in DataRowCollection.Clear method.
  715. 2004-09-19 Sureshkumar T <[email protected]>
  716. * DataRow.cs : while deserialization of dataset, adding a current row precedes the original row.
  717. hence, adding a row cache is necessary if the original row happens to be current.
  718. fixed bug #63097
  719. 2004-08-23 Martin Baulig <[email protected]>
  720. * XmlDataInferenceLoader.cs (Driver): Make this class internal,
  721. not public.
  722. 2004-08-18 Umadevi S <[email protected]>
  723. * DataView.cs - Completed most of the event handling.
  724. Thanks to Punit Todi <[email protected]> for implementing most of it.
  725. Thanks to Boris Kirzner <[email protected]> for commenting and suggesting changes to the implementation.
  726. * DataTable.cs - Changed Access modifiers of class/methods since it was used by DataView.
  727. 2004-08-06 Atsushi Enomoto <[email protected]>
  728. * DataSet.cs : DataSet's ExtendedProperties were not XmlConverted.
  729. 2004-08-05 Atsushi Enomoto <[email protected]>
  730. * XmlConstants.cs : Added constants for "msprop" support.
  731. * DataSet.cs : ExtendedProperties should be written in the schema.
  732. This fixes bug #61233.
  733. 2004-07-27 Atsushi Enomoto <[email protected]>
  734. * DataSet.cs : on serialization to XmlWriter, XmlConvert should be
  735. used. There were also some culture dependency problems to write int.
  736. 2004-06-27 Atsushi Enomoto <[email protected]>
  737. * XmlDataInferenceLoader.cs : It was not always filling relation
  738. child table information correctly. This fixes bug #60742.
  739. 2004-06-23 Umadevi S <[email protected]>
  740. * UniqueConstraint.cs :changed a ifdef true to ifdef NET_1_1
  741. 2004-06-22 Atsushi Enomoto <[email protected]>
  742. * DataSet.cs : Fixed ReadXml(). When ReadMode is ReadSchema and the
  743. schema is inside the document element (as created in XmlWriteMode
  744. .WriteSchema), it should read schema from that non-document element.
  745. This fixes one case reported in bug #60470.
  746. 2004-06-20 Atsushi Enomoto <[email protected]>
  747. * XmlDataInferenceLoader.cs : Kindly reject xml schema document as a
  748. inference target. For bug #60470. (MS does not support schema
  749. document inference and results in unconsistent dataset structure.)
  750. 2004-06-20 Atsushi Enomoto <[email protected]>
  751. * DataTableCollection.cs : reset the table's DataSet to null when
  752. removing a table from this collection.
  753. * DataTable.cs : When Namespace is not specified explicitly, its
  754. Namespace property reflects DataSet's Namespace if exist.
  755. This fixes bug #60469.
  756. 2004-06-18 Gert Driesen <[email protected]>
  757. * DBConcurrentcyException.cs: CRLF to LF
  758. * DataViewSetting.cs: CRLF to LF
  759. 2004-06-18 Gert Driesen <[email protected]>
  760. * DataViewSetting.cs: renamed fields to match MS.NET
  761. 2004-06-18 Gert Driesen <[email protected]>
  762. * DBConcurrencyException.cs: fixed serialization compatibility with
  763. MS.NET
  764. 2004-06-17 Boris Kirzner <[email protected]>
  765. * ChangeLog : Fix for misspelled words.
  766. 2004-06-17 Boris Kirzner <[email protected]>
  767. * DataRowCollection.cs : Removed onColumnRemoved since it is not in use.
  768. 2004-06-17 Boris Kirzner <[email protected]>
  769. * DataTable.cs :
  770. - Table stores default values for columns in special default values row.
  771. It is allocated once (in NewRow).
  772. - DataTable.Copy rewrited. It works with uninitialized rows for better perfomance.
  773. - OnRemoveColumn has nothing to perform by now.
  774. 2004-06-17 Boris Kirzner <[email protected]>
  775. * DataRow.cs :
  776. - Changed access of original, current and proposed indexes to internal.
  777. - ColumnErrors reviewed : now column errors stored in ArrayList and allocated on demand only.
  778. - Added new DataRow constructor that creates uninitialized DataRow (used in DataTable.Copy).
  779. - Use DataContainer.CopyValue and default values row for faster set of default values in row.
  780. - SetColumnValue become CheckValue. Now it does not changes the value, but only checks for its correctness.
  781. Care about Null and DBNull values is now in DataContainer.
  782. - Use DataColumn.AutoIncrementValue and GetInt64 for faster set of autoincrement value.
  783. - Use Datacontainer.CopyValue and default values row to speed up CheckChildRows.
  784. - Fix in CopyState : clone column errors.
  785. - Removed CollectionChanged and onColumnRemoved since we are not using both of them anymore.
  786. 2004-06-17 Boris Kirzner <[email protected]>
  787. * DataColumnCollection.cs :
  788. - Fix : Add() now delegates to Add(DataColumn).
  789. - autoIncrement list holds DataColumn objects, and not just column names.
  790. 2004-06-17 Boris Kirzner <[email protected]>
  791. * DataColumn.cs :
  792. - AutoIncrementValue fixes. Now AutoIncrement uses DataContainer.GetInt64 to avoid boxing.
  793. - DefaultValue fixes. Default value from now on is also stored in special record in
  794. DataTable, so we're able to set default value for the column faster (typed).
  795. 2004-06-15 Atsushi Enomoto <[email protected]>
  796. * DataSet.cs : children of non-root rows were not properly written.
  797. Fixed bug #53959.
  798. 2004-06-10 Umadevi S <[email protected]>
  799. * DataRelation.cs - Constructor
  800. - The datatypes of the parentcolumn(s) and the childcolumn(s) should match
  801. 2004-06-06 Atsushi Enomoto <[email protected]>
  802. * XmlSchemaDataImporter.cs : We should fill Namespace for DataTable.
  803. 2004-06-04 Gert Driesen <[email protected]>
  804. * Constraint.cs: marked methods internal to fix public API
  805. * ConstraintCollection.cs: to fix public API, use
  806. DataTable.fInitInProgress to check whether initialization
  807. of DataTable is in progress
  808. * DataColumn.cs: added stubs for missing methods
  809. * DataRowBuilder.cs: marked Table property internal to
  810. fix public API
  811. * DataSet.cs: removed extra empty destructor, marked
  812. OnMergeFailed internal to fix public API
  813. * DataTable.cs: use fInitInProgress field to hold init
  814. status, to match MS.NET
  815. * DataView.cs: added missing attributes on IsOpen
  816. 2004-06-03 Atsushi Enomoto <[email protected]>
  817. * DataSet.cs : Use NameTable.Get() before calling LookupNamespace()
  818. in XmlNamespaceManager.
  819. 2004-06-03 Atsushi Enomoto <[email protected]>
  820. * DataSet.cs : complex table content child was not properly added
  821. when it is the only one child in the parent table. Fixed bug #53959.
  822. 2004-06-02 Gert Driesen <[email protected]>
  823. * DataTableTypeConverter.cs: added
  824. * DataView.cs: added missing attribute on Table property
  825. * DataViewManager.cs: moved attribute to correct property
  826. * UniqueConstraint.cs: removed extra ReadOnly attribute from
  827. IsPrimaryKey property
  828. 2004-06-01 Atsushi Enomoto <[email protected]>
  829. * DataRow.cs : ColumnsChanged event is not required in .ctor().
  830. 2004-06-01 Atsushi Enomoto <[email protected]>
  831. * XmlDataReader.cs : type change is required before setting value
  832. string to row item.
  833. 2004-05-31 Atsushi Enomoto <[email protected]>
  834. * DataSet.cs : Loop-break of the last fix was incorrect.
  835. 2004-05-31 Atsushi Enomoto <[email protected]>
  836. * DataSet.cs : When a row has no parent row but the table has parent
  837. relation(s), that row had been always ignored.
  838. 2004-05-31 Atsushi Enomoto <[email protected]>
  839. * XmlDataInferenceLoader.cs : Fixed GetMappedTable() that incorrectly
  840. rejected same-named tables in different hierarchy. Thanks to Boris.
  841. 2004-05-31 Atsushi Enomoto <[email protected]>
  842. * XmlDiffLoader.cs : Added some Skip() that is required not to go to
  843. infinite loop. Thanks to Boris for this fix.
  844. 2004-05-31 Atsushi Enomoto <[email protected]>
  845. * XmlDataInferenceLoader.cs : XmlSchema elements should not be infered.
  846. Thanks to Boris for this fix.
  847. 2004-05-30 Atsushi Enomoto <[email protected]>
  848. * DataTable.cs : serialization .ctor() should use XmlReadMode.DiffGram
  849. for ReadXml(). Thanks to Boris.
  850. 2004-05-27 Boris Kirzner <[email protected]>
  851. * DataRow.cs :
  852. - CheckReadOnlyStatus : use typed (and faster comparing).
  853. - EndEdit : bug fix - do not dispose record if it holds original version.
  854. - SetValuesFromDataRecord : Take care about autoincrement columns.
  855. 2004-05-27 Atsushi Enomoto <[email protected]>
  856. * MergeManager.cs : don't output debug message to Console.
  857. 2004-05-27 Atsushi Enomoto <[email protected]>
  858. * XmlDataInferenceLoader.cs : Namespace are not imported to the table
  859. structure. Thanks to Boris Kirzner for the fix.
  860. 2004-05-27 Umadevi S <[email protected]>
  861. * DataRelationCollection.cs - fixed nunit test errors
  862. 2004-05-27 Umadevi S <[email protected]>
  863. * DataTableCollection.cs - fixed nunit test errors
  864. 2004-05-21 Atsushi Enomoto <[email protected]>
  865. * DataColumnCollection.cs : NullReferenceException was thrown when
  866. the table was not found.
  867. * DataRowCollection.cs :
  868. Find() just returns null for null value under MS.NET 1.1.
  869. RemoveAt() should also avoid to call AcceptChanges() like Remove().
  870. * UniqueConstraint.cs : in AssertConstraint() throw ConstraintException
  871. directly under MS.NET (for nunit test).
  872. 2004-05-21 Atsushi Enomoto <[email protected]>
  873. * XmlSchemaDataImporter.cs : Setting startindex in LastIndexOf()
  874. caused problem on qualified name to get schema Field name.
  875. 2004-05-21 Atsushi Enomoto <[email protected]>
  876. * XmlDataReader.cs : Now data reader is namespace aware in all places.
  877. When table's namespace is different, it entered to infinite loop.
  878. 2004-05-19 Boris Kirzner <[email protected]>
  879. * MergeManager.cs : AdjustSchema now updates by reference new created table,
  880. so in Merge you do not need to lookup for it (were unable to do this for unnamed tables).
  881. Code styling.
  882. 2004-05-19 Boris Kirzner <[email protected]>
  883. * DataColumn.cs : In set_Item[int] - if autoincrement, adjust next autoincrement value.
  884. * DataColumnCollection.cs : fixed parantethes.
  885. * DataRow.cs :
  886. - AcceptChanges : do nothing if row state is unchanged.
  887. - GetChildRows, GetParentRows : bug fix (use correct index).
  888. * DataRowCollection.cs : bug fix (compare all row's values).
  889. * DataTable.cs : bug fix (use correct row version).
  890. 2004-05-20 Atsushi Enomoto <[email protected]>
  891. * XmlSchemaDataImporter.cs : xs:positiveInteger is mapped to ulong.
  892. When content type is Mixed, text column is not required (it is
  893. required only when the complex type has no particle).
  894. "Repeated element" column is also created (considering maxOccurs=0
  895. and complex content extension).
  896. 2004-05-20 Atsushi Enomoto <[email protected]>
  897. * XmlSchemaDataImporter.cs : XmlSchemaGroupBase was not handled
  898. properly.
  899. 2004-05-20 Atsushi Enomoto <[email protected]>
  900. * XmlSchemaDataImporter.cs : Removed unused code and extra MonoTODO.
  901. Fixed relation inference to consider attribute XPath.
  902. 2004-05-19 Atsushi Enomoto <[email protected]>
  903. * DataColumn.cs : Fixed set_Item[int]. Convert.ToInt64(DBNull.Value)
  904. always fails.
  905. 2004-05-19 Boris Kirzner <[email protected]>
  906. * DataColumn.cs - removed default member attribute.
  907. 2004-05-19 Boris Kirzner <[email protected]>
  908. * DataColumn.cs,
  909. DataColumnChangeEventArgs.cs,
  910. DataColumnCollection.cs,
  911. DataRow.cs,
  912. DataRowCollection.cs,
  913. DataTable.cs,
  914. Index.cs : Data storage in the row is redesigned. Now data is stored in
  915. typed containers inside DataColumn. Row holds its versions as indexes inside
  916. each of data container, accessed through the row that holds it.
  917. 2004-05-19 Boris Kirzner <[email protected]>
  918. * UniqueConstraint.cs - added comment.
  919. 2004-05-19 Atsushi Enomoto <[email protected]>
  920. * XmlDataInferenceLoader.cs : Don't add already-existing DataTable to
  921. DataSet.
  922. 2004-05-17 Atsushi Enomoto <[email protected]>
  923. * DataSet.cs,
  924. XmlDataInferenceLoader.cs,
  925. XmlDataReader.cs,
  926. XmlSchemaDataImporter.cs : XmlDecode every local name to read and
  927. XmlEncode every local name to write. This should fix bug #58268.
  928. 2004-05-17 Atsushi Enomoto <[email protected]>
  929. * DataSet.cs : Implemented ignored namespaces in InferXmlSchema().
  930. Supported repeated elements. Removed MonoTODOs.
  931. * XmlDataInferenceLoader.cs : Design change to support ignored
  932. namespace and repeated elements.
  933. * XmlSchemaDataImporter.cs : Added mapping support classes.
  934. 2004-05-15 Atsushi Enomoto <[email protected]>
  935. * CustomDataClassGenerator.cs :
  936. Added property parent "[foo]Row" and children "Get[foo]Row" support
  937. for custom DataRow classes.
  938. Fixed DataColumn property accessibility (public --> internal).
  939. 2004-05-14 Atsushi Enomoto <[email protected]>
  940. * CustomDataClassGenerator.cs :
  941. - Put classes inside custom DataSet class.
  942. - Added automatic DataRelation creation support.
  943. - Added Constraints creation support. That is done separate from
  944. relations, since they might be independently created.
  945. - Added non-MS public DataRelation fields.
  946. - Removed extraneous "DataRelation type generation" code.
  947. - Fixed custom_dataset.Initialize() not to create "c" field that
  948. was created more than once.
  949. - Implemented AddxxxRow() that takes parameters for every column.
  950. 2004-05-14 Atsushi Enomoto <[email protected]>
  951. * XmlSchemaDataImporter.cs : When primary key is used more than once,
  952. DataRelation borked because of empty parent column name.
  953. 2004-05-14 Atsushi Enomoto <[email protected]>
  954. * XmlSchemaDataImporter.cs : When Creating constraints with related
  955. to DataRelation creation, also set PrimaryKey to the parent table.
  956. 2004-05-14 Atsushi Enomoto <[email protected]>
  957. * XmlSchemaDataImporter.cs :
  958. Design change to add indirect table and relation structures.
  959. Support for "relation" annotation for local element.
  960. Support for repeatable simple element column (maxOccurs > 1).
  961. Fixed handling of Nested property on DataRelation (for globally
  962. annotated relation, Nested is false).
  963. 2004-05-13 Atsushi Enomoto <[email protected]>
  964. * DataRow.cs : Added DataElement property to avoid storing every row-
  965. element mapping. It stored even for nodes that should be removed.
  966. 2004-05-13 Umadevi S <[email protected]>
  967. * RelationshipConverter.cs - Stubbed this class
  968. * DataRelation.cs - added TypeConveterAttribute
  969. 2004-05-13 Umadevi S <[email protected]>
  970. * DataColumnCollection.cs - Added ResDescriptionAttribute
  971. * DataRelation.cs - Added TypeConverterAttribute
  972. * DataRelationCollection.cs - Added DefaultPropertyAttribute
  973. * DataRowView.cs - Added GetHashCode method with a TODO tag
  974. * DataSet.cs - Added DesignerAttribute
  975. * DataView.cs - Added DesignerAttribute
  976. * DataViewManager.cs - Added DesignerAttribute
  977. * DataViewSetting.cs - Added TypeConverterAttribute
  978. 2004-05-12 Atsushi Enomoto <[email protected]>
  979. * DataRow.cs : Added XmlDataElement initialization code.
  980. 2004-05-11 Atsushi Enomoto <[email protected]>
  981. * XmlDataInferenceLoader.cs :
  982. It now requires XmlDocument as input. Improved identification of
  983. DataSet element. Removed extra lines.
  984. Moved boresome design notes to bottom of the source and
  985. added standalone runnable driver (not included on build).
  986. * DataSet.cs :
  987. Update with related to the change above.
  988. WriteXml() should call Flush() after writing. This fixes bug #58327.
  989. * XmlSchemaDataImporter.cs :
  990. Improved indentification of DataSet element.
  991. 2004-05-11 Gert Driesen ([email protected])
  992. * DataTable: marked initStatus enum internal
  993. 2004-05-09 Gert Driesen ([email protected])
  994. * DataTable.cs: removed TypeConverterAttribute, marked RowsExist
  995. methods internal
  996. * DataRowView.cs: removed extra Error property
  997. * DataRow.cs: reduced accessibility of CollectionChanged method
  998. to private
  999. * DataColumnPropertyDescriptor.cs: made class internal
  1000. * DataColumn.cs: removed extra TypeConvertorAttribute
  1001. * ConstrainCollection.cs: marked PostEndInit method internal
  1002. 2004-05-07 Atsushi Enomoto <[email protected]>
  1003. * DataSet.cs :
  1004. In WriteXmlSchema(), when complex type contains simple type content
  1005. attributes must not added to XmlSchemaComplexType directly. It
  1006. causes schema compilation error.
  1007. DataRelation should not be output when related columns are hidden.
  1008. 2004-05-07 Atsushi Enomoto <[email protected]>
  1009. * XmlDataInferenceReader.cs : Added. It does InferXmlSchema() (it is
  1010. also expected to do ReadXml(), but I will remove that feature and
  1011. support column reordering).
  1012. * XmlSchemaDataImporter.cs : Always initialize dataset name.
  1013. Always set Nested and primary key for parent table.
  1014. * XmlDataReader.cs : Now it is used.
  1015. Top level element might not match to dataset name nor any table
  1016. name, but still possible to read content tables.
  1017. Handle empty element correctly in some places.
  1018. Handle Fragment mode (read up XmlReader to the end).
  1019. * DataSet.cs : Modified InferXmlSchema() and ReadXml() to use
  1020. XmlDataInferenceLoader and XmlDataReader.
  1021. 2004-05-06 Atsushi Enomoto <[email protected]>
  1022. * DataSet.cs :
  1023. Eliminated CRLF injection.
  1024. More clear message in Clear().
  1025. Updates reflecting XmlSchemaDataImporter change.
  1026. Added duplicate check for XmlSerializerNamespaces in BuildSchema().
  1027. Don't use xmlns attribute for UnhandledAttributes (its not mandatory
  1028. but that depends on different behavior from ms.net).
  1029. Set locale also for DataTable.
  1030. Add xs:element only when target namespace matches to the
  1031. element's namespace. Otherwise, add xs:import for external namespace.
  1032. Put xs:sequence for dataset element's particle _only when_ actual
  1033. contents exist.
  1034. 2004-05-06 Atsushi Enomoto <[email protected]>
  1035. * XmlDataReader.cs : Added. This class will work better when our
  1036. schema inference and schema read engine gets improved. (It contains
  1037. standalone testable Driver class.)
  1038. 2004-05-06 Atsushi Enomoto <[email protected]>
  1039. * ForeignKeyConstraint.cs : Check step change. Existence then column
  1040. validity. just for tests.
  1041. * XmlSchemaDataImporter.cs : code simplification. reduced extraneous
  1042. fields.
  1043. 2004-05-05 Atsushi Enomoto <[email protected]>
  1044. * DataSet.cs : Ignore empty content only when output type is diffgram.
  1045. 2004-05-05 Atsushi Enomoto <[email protected]>
  1046. * CustomDataClassGenerator.cs : Modified that DataSet contains each
  1047. DataTable field so that each table property can access them directly.
  1048. (plus, modified standalone code driver code: shouldn't affect)
  1049. 2004-05-05 Boris Kirzner <[email protected]>
  1050. * DataView.cs , DataRowView.cs : Added implementation to basic methods and properties.
  1051. 2004-05-05 Atsushi Enomoto <[email protected]>
  1052. * XmlSchemaDataImporter.cs :
  1053. SimpleContent column support.
  1054. Annotated relation support.
  1055. Top-level element is counted only when its type is complex.
  1056. xs:anyType is no longer treated as complex type.
  1057. dataset existence is mandatory now.
  1058. Improved DataType and DefaultValue support.
  1059. Attribute namespace is properly handled now.
  1060. Prohibited attribute is now treated as hidden column.
  1061. Reject list or union simple type.
  1062. Still incomplete 1) to read relationship in some cases, 2) to
  1063. determine whether an element is dataset or table, 3) thus to
  1064. exclude extraneous column, 4) to remove extraneous *_Id column.
  1065. 2004-05-05 Atsushi Enomoto <[email protected]>
  1066. * DataTable.cs :
  1067. We had better reuse DataSet's ReadXmlSchema() and ReadXml() in
  1068. serialization .ctor() (thus schema read/inference should be easier).
  1069. DataRowSorter should consider Table's Locale.
  1070. 2004-05-05 Atsushi Enomoto <[email protected]>
  1071. * DataColumnCollection.cs : We already had AutoIncrementValue(), so
  1072. use it instead of duplicating logic.
  1073. 2004-05-05 Atsushi Enomoto <[email protected]>
  1074. * ConstraintCollection.cs :
  1075. Use Table.CaseSensitive and Table.Locale to compare strings.
  1076. Duplicate constraint name exception does not occur under .NET 1.1.
  1077. 2004-05-04 Lluis Sanchez Gual <[email protected]>
  1078. * XmlSchemaDataImporter.cs: Added little type check.
  1079. 2004-05-04 Lluis Sanchez Gual <[email protected]>
  1080. * DataSet.cs: Implemented support for runtime serialization. Fixed support
  1081. for xml serialization.
  1082. * XmlDiffLoader.cs: Skip diffgram element when it is empty.
  1083. 2004-04-30 Umadevi S <[email protected]>
  1084. * DataColumnCollection.cs : Fixed nunit test errors, removed TODOs
  1085. * DataTableCollection.cs : Tested and removed TODO
  1086. * TypedDataSetGeneratorException.cs : Fixed a couple of TODOs
  1087. 2004-04-29 Atsushi Enomoto <[email protected]>
  1088. * DataRow.cs : My previous patch unintentionally reverted Boris patch.
  1089. 2004-04-29 Boris Kirzner <[email protected]>
  1090. * UniqueConstraint.cs : Constraint columns becaomes unique after adding constraint ifand only if
  1091. constraint is defined on single column.
  1092. 2004-04-29 Atsushi Enomoto <[email protected]>
  1093. * DataRowCollection.cs : .NET 1.1 throws InvalidConstaintException,
  1094. not ArgumentException (maybe changed after 1.1).
  1095. 2004-04-29 Atsushi Enomoto <[email protected]>
  1096. * DataRow.cs : When Column was added and it was AutoIncrement column,
  1097. it extended the item object array incorrectly.
  1098. (Plus tiny comment and incorrect indentation fix.)
  1099. 2004-04-29 Boris Kirzner <[email protected]>
  1100. * MergeManager.cs : added ( incomplete yet ) support for merging DataSet schema.
  1101. 2004-04-29 Boris Kirzner <[email protected]>
  1102. * DataRow.cs : Bug fix in CopyValuesToRow().
  1103. 2004-04-29 Boris Kirzner <[email protected]>
  1104. * UniqueConstraint.cs : There is no reason to mark constraint's columns as unique, because
  1105. each of the columns should not be unique, but only all the constraint's columns together.
  1106. 2004-04-28 Boris Kirzner <[email protected]>
  1107. * DataRow.cs :
  1108. - Perfomance fixes:
  1109. - Added using of list of autoIncrement columns
  1110. - SetColumnValue receives also DataColumn to avoid duplicate lookup in DatacolumnCollection
  1111. - Fix in CheckNullConstraints
  1112. - Fix in this[] and HasVersion() : when evaluating an expression deleted rows values can be accessed.
  1113. - Fix in SetColumnValue() , added CanAccess() method to avoid case of accessing internal array values berore it actually allocated.
  1114. - Added onColumnRemoved() method to threat column removal accurately.
  1115. * DataRowCollection.cs :
  1116. - Added using of DataRow._nullConstraintViolation (for perfomance fix in EndLoadData())
  1117. - Added method onColumnRemoved() - calls each row's onColumnRemoved() (to ensure column removal is treated accurately)
  1118. * DataTable.cs :
  1119. - Call DataRowCollection.onColumnRemoved() in OnRemoveColumn() (to ensure column removal is treated accurately)
  1120. * DataColumnCollection.cs :
  1121. - Perfomance fixes :
  1122. - collection holds a list of its autoIncrement columns (avoids unnesessary lookup through whole collection)
  1123. - collection holds mapping from column names to DataColumn objects (avoids lookup through whole collection).
  1124. - automatic creation of column names rewrited (bug fixes + perfomance improvement)
  1125. * DataColumn.cs :
  1126. - Uses autoincrement list of a table
  1127. 2004-04-27 Atsushi Enomoto <[email protected]>
  1128. * XmlDataLoader.cs : Even when it should ignore schema, it was
  1129. infering schema.
  1130. * XmlSchemaDataImporter.cs : DataRelation creation support.
  1131. Improved "DataSet" element handing. When attributes are on the
  1132. element, it is not a "DataSet" element.
  1133. Fixed parent key column name.
  1134. Unique name creation is not required. Just raise an error.
  1135. Fill facet also for attribute types.
  1136. 2004-04-27 Atsushi Enomoto <[email protected]>
  1137. * DataRow.cs : Null check for CheckReadOnlyStatus() and
  1138. CheckNullConstraints(), with some coding guideline fixes.
  1139. Type check should be done by Type instance comparison.
  1140. 2004-04-27 Atsushi Enomoto <[email protected]>
  1141. * DataColumnCollection.cs : When add a column to the collection, fill
  1142. auto-increment column.
  1143. 2004-04-26 Boris Kirzner <[email protected]>
  1144. * DataColumn.cs : Small perfomance fix (avoid unnesessary string concatenation).
  1145. 2004-04-26 Atsushi Enomoto <[email protected]>
  1146. * CustomDataClassGenerator.cs : Added.
  1147. * TypedDataSetGenerator.cs : Implemented Generate().
  1148. Changed GenerateIdName() to call CustomDataClassGenerator.MakeSafeName
  1149. * XmlSchemaDataImporter.cs : Table Locale should be supplied.
  1150. 2004-04-25 Boris Kirzner <[email protected]>
  1151. * DataTable.cs : Small perfomance fix (avoid unnesessary string concatenation).
  1152. 2004-04-25 Boris Kirzner <[email protected]>
  1153. * Constraint.cs : Small perfomance fix (avoid unnesessary string concatenation).
  1154. 2004-04-23 Umadevi S ([email protected])
  1155. * DataRow.cs: Checked BeginEdit,EndEdit,CancelEdit and Delete methods
  1156. - Added error handling to the above methods
  1157. 2004-04-22 Atsushi Enomoto <[email protected]>
  1158. * DataSet.cs : Data should be read when mode is IgnoreSchema (well,
  1159. the support is incomplete yet).
  1160. * XmlDataLoader.cs :
  1161. Reverted ReadModeSchema() argument change. XmlReadMode would be
  1162. useful to handle IgnoreSchema.
  1163. Don't overwrite DataSetName when mode is not such kind.
  1164. Set Prefix and Namespace as well as DataSetName.
  1165. AllowDBNull looks set false by default for element column.
  1166. Set unique constraint as primary key when infering the table schema.
  1167. 2004-04-21 Atsushi Enomoto <[email protected]>
  1168. * DataSet.cs :
  1169. Never set null string for Prefix and Namespace.
  1170. In InferXmlSchema() when null XmlReader is passed, just do nothing.
  1171. In WriteXmlSchema(string), earlier try block.
  1172. In BuildSchema(), try to add serialization namespaces for each
  1173. namespaces in DataSet/DataTable/DataColumn.
  1174. Removed namespace argument from WriteColumnAsElement() and don't
  1175. overwrite when namespace is "". This fixes bug #57330.
  1176. * DataColumn.cs : For Namespace and Prefix, never set null.
  1177. 2004-04-21 Boris Kirzner <[email protected]>
  1178. * XmlSchemaMapper.cs : Check for not null unique constraint in ReadXmlSchemaKeyref()
  1179. before creating and adding foreign key constraint and relation.
  1180. 2004-04-21 Boris Kirzner <[email protected]>
  1181. * MergeManager.cs : In AdjustSchema() source table clone should be added
  1182. and not the table itself.
  1183. 2004-04-21 Boris Kirzner <[email protected]>
  1184. * DataSet.cs :
  1185. - CaseSensitive : Additional fix (removed unnesessary assignment).
  1186. - CopyProperties : Do not try to copy ExtendedProperties if the collection is empty.
  1187. 2004-04-21 Boris Kirzner <[email protected]>
  1188. * DataTable.cs : Ensure that DataSet property is not null before using it in Clear().
  1189. 2004-04-20 Boris Kirzner <[email protected]>
  1190. * DataTable.cs :
  1191. - EndLoadData() : perfomance fix in case of null constraint violation
  1192. during data load (also in DataRow.cs).
  1193. - CaseSensitive : If DataTable belongs to DataSet it should always use
  1194. DataSet.CaseSensitive untill explicitly changed.
  1195. - CopyProperties() : do not try to copy ExtendedProperties if the collection is empty.
  1196. * DataRow.cs :
  1197. - Pefromance fix in case of null constraint violation
  1198. during data load (also in DataTable.cs).
  1199. - CollectionChanged() : use correct column number after new DataColumn was added
  1200. (differs in case some DataColumn was previosly removed).
  1201. - EndEdit() - throw away proposed values only after CheckChildRows() complete.
  1202. 2004-04-20 Boris Kirzner <[email protected]>
  1203. * DataColumnCollection.cs : Since unique constraint is added now
  1204. in DataColumn.SetTable() the additional creation of constraint in
  1205. DataColumnCollection.Add() is redundant and causes exception - fixed.
  1206. 2004-04-19 Atsushi Enomoto <[email protected]>
  1207. * XmlDataLoader.cs : Added "never add data rows" mode.
  1208. Removed unused code. However, it is temporary fixes to unify
  1209. ReadXml() and InferXmlSchema().
  1210. * DataSet.cs : Implemented InferXmlSchema(), though it is incomplete.
  1211. I'll create another XmlDataLoader since there are many problems
  1212. such that 1) it is too waste to read the entire xml into an
  1213. XmlDocument, 2) it does not handle attributes correctly, and 3) it
  1214. must handle "ignored namespaces".
  1215. 2004-04-19 Atsushi Enomoto <[email protected]>
  1216. * Added XmlSchemaDataImporter.cs (new schema reader).
  1217. * DataSet.cs : Use XmlSchemaDataImporter (right now for DataSet only)
  1218. for ReadXmlSchema().
  1219. Let schema reading work to ReadXmlSchema().
  1220. Don't return ReadSchema when argument read mode was DiffGram.
  1221. 2004-04-15 Umadevi S ([email protected])
  1222. * Updated Clone/Copy methods in DataSet along with Testcase
  1223. * ForeignKeyConstraint.cs - special ctor implemented
  1224. Logic : ParentTable in the ctor - Since only name is given (not the DataTable object), we cannot associate any DataTable or DataSet right now. So, only possible way is to do it when AddRange() is called. The ParentTable is searched in the DataSet to which the calling DataTable belongs. And make the calling DataTable as ChildTable. In the PostAddRange() method check is addedd to perform the assignment of parent and child data columns once the information becomes available (When AddRange is called).
  1225. * Changes in ConstraintCollection.cs for the above
  1226. Add (Constraint) - A check is performed to see if the constraint is ForeignKeyConstraint and whether data columns are validated. If no, whether it is called with AddRange(), If no, an Exception is thrown. AddRange() - PostAddRange() is called on the ForeignKeyConstraint object with the "table" as argument. Thanks to Deepak for the patch.
  1227. 2004-04-15 Atsushi Enomoto <[email protected]>
  1228. * XmlSchemaMapper.cs : set parent key and foreign key info to
  1229. DataRelation when reading refkey constraints.
  1230. Supply constraint name for fkey.
  1231. 2004-04-15 Atsushi Enomoto <[email protected]>
  1232. * XmlDataLoader.cs : Don't overwrite existing DataSetName. When read
  1233. mode is Auto, just ignore the schema if there is already schema info.
  1234. * DataSet.cs : Similarly ignore schema info for XmlReadMode = Auto.
  1235. 2004-04-14 Atsushi Enomoto <[email protected]>
  1236. * DataSet.cs :
  1237. - In MS output, XML declaration looks to have standalone decl (yes).
  1238. - ReadXml(reader) just calls to ReadXml(reader, XmlReadMode.Auto)
  1239. - ReadXml(reader, mode)
  1240. 1) return originally specified mode, instead of (always) Auto.
  1241. 2) Check empty reader.
  1242. 3) Check diffgram schema and content separately.
  1243. 4) When diffgram exists, remaining (the same-level) contents
  1244. won't be consumed.
  1245. 5) Similar fact should be applied, but somewhat different.
  1246. InferSchema and IgnoreSchema just skips, Fragment reads both
  1247. schema and content, others just reads schema.
  1248. - Removed unused code.
  1249. * XmlDataLoader.cs :
  1250. - Read() should skip in some ReadMode.
  1251. - Don't compare schema element name as case-insensitive (well,
  1252. should schemas be checked here?)
  1253. - Avoided BuildDocument() not to create confusing DataSet
  1254. document element.
  1255. - Don't add any tables when reader has single element.
  1256. * XmlDiffLoader.cs :
  1257. When target table was not found, MS.NET doesn't raise an error.
  1258. * XmlSchemaMapper.cs :
  1259. When XmlSchema.Read() left xml reader at </xs:schema>, read once.
  1260. 2004-04-13 Atsushi Enomoto <[email protected]>
  1261. * DataSet.cs :
  1262. - InferXmlSchema(): Throw explicit NotImplementedException now.
  1263. - Don't put XML declaration everywhere. Write just for filename arg.
  1264. - xmlns="" should not be written. Maybe WebService problem is
  1265. because default namespace is overwritten. This patch will keep
  1266. the WS problem away and actually fixes some unit tests (i.e. use
  1267. explicit String.Empty for null namespace in WriteStartElement()).
  1268. - MoveToContent() should always be called, not only when
  1269. LocalName="xml". It will ignore prolog (DTD, PI, comment etc.).
  1270. - Even XmlReadMode is DiffGram, reader might not be "diffgram"
  1271. element. As to MSDN, diffgram does not contain schema.
  1272. 2004-04-13 Gonzalo Paniagua Javier <[email protected]>
  1273. * DataTable.cs: made _initStatus private so that System.Data is CLS
  1274. compliant.
  1275. 2004-04-13 Umadevi S <[email protected]>
  1276. * UniqueConstraint.cs:
  1277. * ConstraintCollection.cs:
  1278. * DataTable.cs:
  1279. - Implemented a Constructor for UniqueConstraint.cs
  1280. - Used EndInit on DataTable to call a delegate which adds the
  1281. constraints passed to the most recent call of AddRange().Used
  1282. AddRange() on ConstraintCollection to check whether
  1283. DataTable.BeginInit has occurred. If yes, save the argument
  1284. constraint collection passed, then return. If no, Check whether the
  1285. constraints are of type UniqueConstraint and initialized with the
  1286. special constructor If yes Initialized the table property of this
  1287. UniqueConstraint object with table assosciated with the current
  1288. instance of ConstraintCollection class.
  1289. 2004-04-07 Marek Safar <[email protected]>
  1290. * Constraint.cs: changed ClsCompliant to CLSCompliant, build fix.
  1291. 2004-04-06 Gonzalo Paniagua Javier <[email protected]>
  1292. * Constraint.cs:
  1293. * DataColumnCollection.cs:
  1294. * DataRelationCollection.cs:
  1295. * DataRowCollection.cs:
  1296. * DataTableCollection.cs:
  1297. * InternalDataCollectionBase.cs:
  1298. * Node.cs: CLS compliance for System.Data. Patch by Gert Driesen.
  1299. Fixes bug #56557.
  1300. 2004-04-05 Jackson Harper <[email protected]>
  1301. * DataTable.cs: Add rows to the row list if there is no filter.
  1302. 2004-03-31 Juraj Skripsky <[email protected]>
  1303. * DataColumn.cs : Setting Caption to null sets it to the empty string
  1304. (ms.net behaviour, testcase is in DataColumnTest).
  1305. * DataRow.cs : Evaluate DataColumn.Expression when such a column's
  1306. value is requested.
  1307. 2004-03-30 Lluis Sanchez Gual <[email protected]>
  1308. * DataColumn.cs: In Expression setter, set the expression member even if
  1309. it is an empty string.
  1310. * DataSet.cs: Support serialization of byte[] columns.
  1311. * XmlDataLoader.cs: Support deserialization of Guid columns.
  1312. Set MappingType.Attribute to columns infered from attributes.
  1313. 2004-03-29 Juraj Skripsky <[email protected]>
  1314. * ExpressionElements.cs : remove
  1315. * DataColumn.cs, DataRelationCollection.cs, DataTable.cs :
  1316. Integration of new Mono.Data.SqlExpressions classes used in
  1317. DataTable.{Select, Compute}.
  1318. Fixes bug #55503 and lots of failures in DataTableTest.cs.
  1319. 2004-03-28 Juraj Skripsky <[email protected]>
  1320. * Index.cs: Simple fix in ComparePartialRowNonUnique.
  1321. This fixes bugs #56129 and #56014.
  1322. 2004-03-25 Lluis Sanchez Gual <[email protected]>
  1323. * DataSet.cs: In WriteXml (string filename, XmlWriteMode mode), close the
  1324. stream after writing the dataset. This fixes bug #52581.
  1325. Also added several writer.Close into finally blocks, so writers are properly
  1326. closed in case of an exception.
  1327. 2004-03-12 Andreas Nahr <[email protected]>
  1328. * Constraint.cs: DO NOT USE the consts scheme if types can be referenced directly!
  1329. * DataColumn.cs: DO NOT USE the consts scheme if types can be referenced directly!
  1330. * ColumnTypeConverter.cs: Added stub
  1331. * DefaultValueTypeConverter: Added stub
  1332. * ConstraintConverter.cs: Added stub
  1333. 2004-03-04 Eran Domb <[email protected]>
  1334. * XmlDataLoader.cs : Xml reading reviewed. Added support for additional xml formats as described
  1335. in MS.NET documentation (missing DataSet element etc).
  1336. 2004-03-04 Eran Domb <[email protected]>
  1337. * Node.cs : Added.
  1338. * Index.cs : Rollback last changes.
  1339. 2004-03-03 Atsushi Enomoto <[email protected]>
  1340. * Index.cs : justa build fix.
  1341. 2004-03-03 Eran Domb <[email protected]>
  1342. * Index.cs : Added.
  1343. * Constraint.cs, ForeignKeyConstraint.cs, UniqueConstraint, ConstraintCollection.cs, DataColumn.cs,
  1344. DataRow.cs, DataRowCollection.cs, DataSet.cs, DataTable.cs : Changes made for using indexes on tables.
  1345. This changes made for performance improvement.
  1346. 2004-02-08 Eran Domb <[email protected]>
  1347. * XmlSchemaMapper.cs : Read columns is they were written as SimpleContent or as Attributes.
  1348. 2004-02-08 Eran Domb <[email protected]>
  1349. * DataSet.cs: Fix some bugs in ReadXml().
  1350. 2004-02-04 Lluis Sanchez Gual <[email protected]>
  1351. * DataSet.cs: Added missing method that broke the build.
  1352. 2004-02-04 Eran Domb <[email protected]>
  1353. * DataRowCollection.cs (InsertAt): Add a check for null row. Replace check of IndexOf with RowId for
  1354. better performance.
  1355. * DataSet.cs (GetTableSchema) : Add supprot for simple content columns. Change the condition for a case
  1356. when all column are attributes (elements count is 0), we still want to add the relations. No relations
  1357. can be on simple contents.
  1358. (AddUniqueConstraints) Check that the column of the constraint are not hidden.
  1359. (AddForeignKeys) Check that the relation has constraints attach to it.
  1360. * XmlConstants.cs : Added constant.
  1361. 2004-02-04 Eran Domb <[email protected]>
  1362. * DataSet.cs : GetSchemaSerializable() return null and not BuildSchema().
  1363. DoWriteXmlSchema calls BuildSchema ().
  1364. 2004-02-04 Lluis Sanchez Gual <[email protected]>
  1365. * DataRow.cs: Added SetOriginalValue(), which is used to set the original
  1366. value of a column.
  1367. * DataRowCollection.cs: In InsertAt(), perform the correct checks and
  1368. attach the row.
  1369. * DataSet.cs: Fixed method GetChanges(): Parent rows of modified rows must
  1370. also be added to the dataset.
  1371. In WriteTable(), do not write unchanged rows when writing the original
  1372. version of the table.
  1373. Added WriteIndividualTableContent(), for writing the contents of a single
  1374. table.
  1375. Changed BuildSchema and related methods, so it can generate a schema for
  1376. any set of tables, not just the tables of the dataset (needed for
  1377. single datatable serialization).
  1378. * DataTable.cs: Implemented serialization constructor and GetObjectData method.
  1379. Also implemented some ReadXmlSchema methods.
  1380. * XmlDiffLoader.cs: Read and process the xml document directly from XmlReader,
  1381. instead of loading the full dataset in an XmlDocument. It is faster and
  1382. saves memory. Also fixed several problems when generating the changes.
  1383. * XmlSchemaMapper.cs: Support reading schemas for single tables (used by
  1384. table serialization).
  1385. 2004-02-02 Eran Domb <[email protected]>
  1386. * DataSet.cs : Add indentation to the xml serialization only if we create the XmlWriter.
  1387. Add the namespace attribute even if namespace is an empty string for inteoperability with MS.NET.
  1388. * DataTable.cs (NewRow): Create only one DataRowBuilder.
  1389. Initiate new row with row id -1.
  1390. * DataRow.cs : Add RowId property.
  1391. * DataRowBuilder.cs : Add _rowId member.
  1392. * DataRowCollection.cs (Add) : Use the RowId property of the new row to check if it is already exists in the collection.
  1393. 2004-01-26 Eran Domb <[email protected]>
  1394. * XmlConstants.cs : Added some constants.
  1395. * DataColumn.cs : Added a method to retrive AutoIncrement value.
  1396. * XmlDataLoader.cs : Set the value of the foriegn key column, according to the value of the
  1397. parent table column.
  1398. * XmlDiffLoader.cs : Convert the value comming from the xml.
  1399. * XmlSchemaMapper.cs (Read) : Set the DataSet namespace.
  1400. (ReadXmlSchemaSequence) : Change the logic that decides if this element is a column or a table.
  1401. (ReadXmlSchemaElement) : Set the locale of the dataset.
  1402. (ReadColumn) : Set the column type. Find if the column is AutoIncrement.
  1403. (GetColumnType) : New method to get the column type from the attribute value.
  1404. (ReadXmlSchemaUnique) : Improve parsing of XPath. Set the constraint as a PK if needed,
  1405. and add the constraint to the table.
  1406. (ReadXmlSchemaKeyref) : Improve parsing of XPath. Create the FK constraint and add it to
  1407. the table.
  1408. * DataSet.cs : Improving writing of unique constraints, and foriegn key constraint. Givving them the correct names.
  1409. Writing more information to the schema for interoperability with ms.net.
  1410. Improve diffgarm writing mode.
  1411. 2004-01-21 Atsushi Enomoto <[email protected]>
  1412. * TypedDataSetGenerator.cs : Implemented GenerateIdName().
  1413. 2004-01-21 Eran Domb <[email protected]>
  1414. * XmlDataLoader.cs (AddRowToTable) : Give thre new relation correct name.
  1415. Do not set the child column to be AutoIncrement.
  1416. Create the new column for the relation as MappingType.Hidden so they will not be serialized
  1417. when writing the dataset to xml.
  1418. 2004-01-20 Atsushi Enomoto <[email protected]>
  1419. * Added missing TypedDataSetGenerator.cs.
  1420. 2004-01-08 Eran Domb <[email protected]>
  1421. * XmlSchemaMapper.cs : Fix a bug. Check if table already in DataSet before adding it.
  1422. * DataSet.cs (ReadXml) : Fix bugs. Read correctly the xml file with XmlReadMode of DiffGram,
  1423. InferSchema, ReadSchema and IgnoreSchema.
  1424. * XmlDataLoader.cs : All modes use the same logic.
  1425. * XmlDiffLoader.cs : Adding BuildXmlDocument method to the class.
  1426. 2004-01-06 Eran Domb <[email protected]>
  1427. * DataRelationCollection.cs : Use IndexOf in indexer.
  1428. * DataSet.cs : Adding support for WriteXml with diffgram. Code style changes.
  1429. * XmlDataLoader.cs : Set the DataSet.enforceConstraints to false before loading the tables.
  1430. * XmlDiffLoader.cs : Reading nested tables.
  1431. * XmlSchemaMapper.cs : Reading the relation.
  1432. * XmlConstants.cs : Adding some constants.
  1433. 2004-01-05 Jackson Harper <[email protected]>
  1434. * DataView.cs: Set readonly property of property descriptor. This
  1435. fixes bug #52598.
  1436. 2004-01-01 Sanjay Gupta <[email protected]>
  1437. * DataRelationCollection.cs : Fixed incorrect generation of default
  1438. Relation name.
  1439. * DataSet.cs : Added missing functionality in WriteXml().
  1440. * XmlConstants.cs : Added new constants.
  1441. 2003-12-27 Atsushi Enomoto <[email protected]>
  1442. * DataSet.cs : Fixed incorrect WriteXml() signature.
  1443. 2003-12-18 Jackson Harper <[email protected]>
  1444. * DataView.cs: Implement AddNew, Delete, and OnListChanged.
  1445. 2003-12-17 Atsushi Enomoto <[email protected]>
  1446. * DataSet.cs, XmlDataLoader.cs : Table name should be encoded before
  1447. they take shape of xml. This fixed bug #52240
  1448. 2003-12-16 Tim Coleman <[email protected]>
  1449. * KeyRestrictionBehavior.cs:
  1450. New stubs added for .NET 1.2
  1451. * DataTable.cs:
  1452. Changes for 1.2
  1453. 2003-12-08 Eran Domb <[email protected]>
  1454. * DataColumn.cs (Expression) : Validate the expression.
  1455. * DataRelationCollection.cs (IndexOf) : Added new method sensetive to case differences in relation name.
  1456. (Contains, IndexOf, this[], Add) : Call new IndexOf when needed.
  1457. * DataRow.cs (this[]) : Fix the condition for throwing RowNotInTableException.
  1458. (RejectChanges) : Detach row when state was Added.
  1459. (CollectionChanged) : Fix a bug.
  1460. * ExpressionElement (ValidateExpression) : Fix a bug.
  1461. * ForeignKeyConstraint.cs (AssertConstraint) : Added implementation. Check all rows from child table have
  1462. a parent row in the parent table.
  1463. (_validateColumns) : Fix bugs.
  1464. * MergeManager.cs (AdjustSchema) : Fix a bug.
  1465. * XmlDataLoader.cs (ReadModeInferSchema) : Change implementation. Now we can read nested xml, and we generate the relations
  1466. between the tables.
  1467. 2003-11-30 Eran Domb <[email protected]>
  1468. * DataColumnCollection.cs (this[string name]) : Use IndexOf to find the column.
  1469. (Add) : Find if the new column name is the same as the one found in IndexOf.
  1470. (IndexOf) : New method.
  1471. (Contains) : Use new IndexOf.
  1472. (IndexOf) : Use new IndexOf.
  1473. * DataRelationCollection.cs (DataRelationCollection.AddCore) : Add The Relation to the collection.
  1474. (DataSetRelationCollection.AddCore) : First add the UniqueConstraint.
  1475. * DataRow.cs (this[int columnIndex, DataRowVersion version]) : Change exceptions.
  1476. (Delete) : Detach row if the RowState was Added.
  1477. (GetChildRows) : Get the array form the ChildTable.
  1478. (GetParentRows) : Get the array from the ParenTable.
  1479. * DataRowCollection.cs (Remove) : Check if row state is Detached to avoid exception.
  1480. * DataSet.cs (IXmlSerializable.ReadXml) : Do not call MoveToContent and ReadEndElement - the XmlSerializationReader does it.
  1481. * DataTable.cs (PrimaryKey) : Fix bugs.
  1482. (Compute) : First call Select. Then create ExpressionAggregate to aggregate the Select result.
  1483. * DataTableCollection.cs (Add) : Fix a bug.
  1484. * ExpressionElement.cs (ValidateExpression) : Turning ValidateExpression to static.
  1485. (Result) : Added new interface to AggregateExpression that get DataRow[] as a param.
  1486. Some code style changes (tab instead of whit spaces, alignment, etc...).
  1487. * ForeignKeyConstraint.cs (_validateColumns) : Throw correct exception.
  1488. * MergeManager.cs (AdjustSchema) : Fix a bug.
  1489. 2003-11-26 Miguel de Icaza <[email protected]>
  1490. * DataSet.cs: Add a few more missing methods, code style updated
  1491. to Mono style.
  1492. 2003-11-26 Tim Coleman <[email protected]>
  1493. * ConflictOptions.cs DataAdapterException.cs DataTableReader.cs
  1494. * DbMetaData.cs FillOptions.cs IDataReader2.cs IDataRecord2.cs
  1495. * IDataUpdatableRecord.cs IDbAsyncCommand.cs IDbAsyncConnection.cs
  1496. * IDbExecutionContext.cs IGetTypedData.cs ISetTypedData.cs
  1497. * LoadOption.cs OperationAbortedException.cs ResultSetOptions.cs
  1498. * ResultSetSensitivity.cs StatementCompletedEventArgs.cs
  1499. * StatementCompletedEventHandler.cs UpdateOptions.cs:
  1500. New classes added for NET_2_0
  1501. * DBConcurrencyException.cs DataRelation.cs DataSet.cs DataTable.cs
  1502. * DataTableCollection.cs DataView.cs ForeignKeyConstraint.cs:
  1503. Modifications to add new NET_2_0 functions
  1504. 2003-11-25 Tim Coleman <[email protected]>
  1505. * IDataSources.cs:
  1506. New 1.2 class added
  1507. 2003-11-21 Pedro Martínez Juliá <[email protected]>
  1508. * DataRow.cs: Detached row can be accesible (new rows from data
  1509. table are detached). Closes but #51263.
  1510. 2003-11-19 Eran Domb <[email protected]>
  1511. * DataRow.cs : Throw exceptions if Row is Detached.
  1512. (EndEdit) : Check that we are not in middle of ChangeEvent.
  1513. (AcceptChanges) : Detach the row.
  1514. * DataRelation.cs : throw correct exception.
  1515. *UniqueConstraint.cs : throw correct exception.
  1516. 2003-11-09 Pedro Martínez Juliá <[email protected]>
  1517. * DataRow.cs: Use RemoveInternal instead of Remove because the last
  1518. one uses Delete and AcceptChanges.
  1519. * DataRowCollection.cs: When removing, Delete and AcceptChanges
  1520. method from the row are called. Added an internal method that will
  1521. be used by DataRow to "physically" remove the row from the list.
  1522. 2003-11-09 Pedro Martínez Juliá <[email protected]>
  1523. * DataRowCollection.cs: To follow the specification: Remove and
  1524. RemoveAt should remove the row. But needed to call DeletingDataRow
  1525. to prepare the deleting.
  1526. * DataRow.cs: Don't call DeletingDataRow when it is called by the
  1527. method Table.Rows.Remove.
  1528. 2003-11-09 Pedro Martínez Juliá <[email protected]>
  1529. * DataRowCollection.cs: Make the row be deleted by itself. If not,
  1530. it fails because we need to call OnRowDeleting and OnRowDeleted. It
  1531. is full implemented inside DataRow.
  1532. 2003-11-05 Eran Domb <[email protected]>
  1533. * DataView.cs (ctor) : Changing default RowStateFilter to CurrentRow.
  1534. 2003-11-04 Eran Domb <[email protected]>
  1535. * DataRow.cs (CheckChildRows) : Improving the implementation - checking child for all FK, and not
  1536. on all Relations.
  1537. (GetChildRows) : Adding some checks.
  1538. (GetParentRows) : Adding some checks. Fix a bug in implementation.
  1539. (SetParentRow) : Added implementation.
  1540. * DataRowCollection.cs (Add) : Added more checks on the row added to the collection.
  1541. * DataTable.cs (Copy) : Set the During Loading flag to save unnecessary assertions.
  1542. * ForeignKeyConstraint.cs (AssertConstraint) : Fixing bugs in implementation. Checking for DBNull values in the row.
  1543. * MergeManager.cs : Check that the target table is not null.
  1544. 2003-10-27 Eran Domb <[email protected]>
  1545. * DataColumn.cs (DefaultValue) : Changing null value to DBNull. Checking that the type of the new default value
  1546. can be converted to the column type.
  1547. * DataRelationCollection.cs (AddCore) : Give the new FK the name of the relation.
  1548. * DataRow.cs (EndEdit) : Check if we need to validate the constraints.
  1549. (GetParentRows, GetChildRows) : Checking that the row has the wanted version, before accessing the row's value.
  1550. * DataRowCollection.cs (Add) : Fixing a bug.
  1551. (Clear) : Before clearing the array check that there is no violation of FK constraint.
  1552. * DataSet.cs (Prefix) : If value is null chage it to empty string.
  1553. (GetXml) : Removing the Processing Instructions from the xml string as in MS ADO.NET.
  1554. * ExpressionElement : Adding support for IN expresion.
  1555. * DataTable (CopyConstraints) : New method that copy the tables constraints to the copy table.
  1556. (Select) : Adding support for DataViewwRowState.
  1557. * ForeignKeyConstraint.cs (AssertConstraint) : Adding implementation.
  1558. * MergeManager.cs (MergeRow) : Fix bugs.
  1559. 2003-10-27 Eran Domb <[email protected]>
  1560. * DataRow.cs (SetColumnValue): Donot check null value when in midle of loading data.
  1561. check null values when ending loading data.
  1562. * DataSet.cs (RejectChanges) : Imlementation.
  1563. (Prefix) : If prefix was changed fire event. Check that the prefix is not null - if null,
  1564. change it to empty string.
  1565. * DataTable.cs (BeginLoadData, EndLoadData) : Impemantation.
  1566. 2003-10-22 Eran Domb <[email protected]>
  1567. * MergeManager.cs : Fixing bugs. Adding check for PrimaryKey matching.
  1568. * ConstraintCollection.cs (RamoveAt): Change implemntation.
  1569. * DataTableCollection (CanRemove): Removing cast to Constraint.
  1570. 2003-10-22 Eran Domb <[email protected]>
  1571. * DataRelationCollection.cs (AddCore): The unique constraint was added even if the createConstraints flag was false.
  1572. (Clear): The collection was cleared without removing the relation from the parent and child tables.
  1573. * DataSet.cs (Copy, Clone): The Relations of the DataSet were not copy.
  1574. (HasChanges, Reset): Imlementation.
  1575. * DataTable.cs (HasErrors): There is no flag for errors, instead the table ask her row if they have any errors.
  1576. This is because the we do not no when to turn off the flag.
  1577. (Locale): Changing implementation to behave like ADO.NET.
  1578. (AcceptChanges): Fix bug.
  1579. (Clear): Check that this table is not referenced from a foreign key constraint.
  1580. (Copy): Do not try to access a deleted row.
  1581. (CopyProperties): Copy the PrimaryKey.
  1582. (GetChanges, ImportRow): Implementation.
  1583. (LoadDataRow): Adding implementation if the table has PrimaryKey.
  1584. (ToString): Changing implementation to behave like ADO.NET.
  1585. * UniqueConstraint.cs (AssertConstraint): support for Multiple DataColumns in the constraint.
  1586. * DataRow.cs (Ctor): In the constructor we initiate the current array, but we should initiate only the proposed array for new rows.
  1587. (HasErrors): Implementation.
  1588. (Delete): Added checking for child rows of the deleted row.
  1589. (EndEdit): Added checking for child row and firing events.
  1590. (GetColumnError): Added a check that the method will not return null, as in ADO.NET(an empty string is returned).
  1591. (GetColumnsInError): Added a check for null values in column error.
  1592. (HasVersion): Added special treatment for special RowState.
  1593. (CollectionChanged): More checks to avoid NullReferenceException.
  1594. * DataRowCollection.cs (Remove): Fix a bug.
  1595. 2003-10-01 Duncan Mak <[email protected]>
  1596. More patches from Eran Domb <[email protected]>.
  1597. * MergeManager.cs: New file.
  1598. * DataRelationCollection.cs (AddCore): Check that a
  1599. UniqueConstraint is already exists. It loops over the Relations
  1600. instead of the Constraints.
  1601. (Add, AddCore): The relation was added twice.
  1602. * DataSet.cs (Merge, GetChanges, HasChanges): Implemented.
  1603. 2003-09-30 Duncan Mak <[email protected]>
  1604. Patches from Eran Domb <[email protected]>.
  1605. * DataRelation.cs (constructor): When the name of the relation is
  1606. null, it should return an empty, not "Relation".
  1607. * DataRow.cs (AcceptChanges): Added special case for
  1608. RowState.Detached.
  1609. (CancelEdit): Set editing flag to false.
  1610. (IsNull): Check that the value is DBNull.
  1611. * DataRowCollection.cs (Add): There was no check that the table of
  1612. the collection is owned by a DataSet.
  1613. * DataSet.cs (OnMergeFailed): Added.
  1614. * UniqueConstraint.cs (AssertConstraint): There was no check that
  1615. values in the row are not null, where it is a primary key
  1616. column. Also check that the row has a proposed version, if not,
  1617. get the current version when we compare the rows.
  1618. 2003-09-25 Duncan Mak <[email protected]>
  1619. Patches from Eran Domb <[email protected]>.
  1620. * DataColumn.cs (Unique): Implemented.
  1621. * DataTable.cs:
  1622. * ConstraintCollection.cs:
  1623. * ForeignKeyConstraint.cs (_ensureUniqueConstraintExists): Fixes
  1624. an Exception thrown. Details:
  1625. http://lists.ximian.com/archives/public/mono-devel-list/2003-September/002130.html
  1626. * DataRowCollection.cs (Add): There is no checking that there is
  1627. no violation of the unique constrains.
  1628. * UniqueConstraint.cs (AssertConstraint): There is no checking on
  1629. all columns in the constraint.
  1630. * DataTableCollection (Add): Correctly throw an Exception, more
  1631. details here:
  1632. http://lists.ximian.com/archives/public/mono-devel-list/2003-September/002117.html
  1633. (Remove, RemoveAt): Implemented.
  1634. 2003-07-31 Duncan Mak <[email protected]>
  1635. * DBConcurrencyException.cs: Added new NET_1_1 no-param constructor.
  1636. 2003-07-25 Ravi Pratap <[email protected]>
  1637. * DataRelation.cs (OnPropertyChanging): Calling the 'Invoke'
  1638. method on a delegate is disallowed - fix this.
  1639. 2003-07-22 Lluis Sanchez Gual <[email protected]>
  1640. * DataSet.cs: Implemented IXmlSerializable interface. Added basic support for
  1641. xml serialization. Modified method of writing schema. Now it creates
  1642. a XmlSchema object and serializes it using XmlSerializer.
  1643. * XmlConstants.cs: Added constants for data type names.
  1644. * XmlDataLoader.cs: Fixed deserialization of data. Now converts data to the
  1645. type specified in the column.
  1646. 2003-04-20 Alan Tam <[email protected]>
  1647. * DataRelationCollection.cs: Fix a bug that prevent relations
  1648. from being added via DataSet.
  1649. 2003-04-12 Ville Palo <[email protected]>
  1650. * UniqueConstraint.cs: one tiny fix.
  1651. 2003-04-05 Ville Palo <[email protected]>
  1652. * DataTable.cs: Remove UniqueConstraints when adding new ones
  1653. 2003-04-04 Ville Palo <[email protected]>
  1654. * DataColumnCollection.cs: Little 'case sensitive' fix
  1655. 2003-04-04 Ville Palo <[email protected]>
  1656. * DataRow.cs: AutoIncrement handling to Constructor
  1657. * DataRowCollection.cs: This doesnt need anymore AutoIncrements
  1658. 2003-03-27 Ville Palo <[email protected]>
  1659. * DataTable.cs: Some fixes to PrimaryKey etc...
  1660. * UniqueConstraint.cs: Little clean up
  1661. 2003-03-27 Ville Palo <[email protected]>
  1662. * DataTable.cs: Tiny fix to ToString () -method
  1663. 2003-03-27 Ville Palo <[email protected]>
  1664. * ConstraintCollection.cs: Little fix.
  1665. * DataColumn.cs: Added new internal method SetUnique()
  1666. * UniqueConstraint.cs: some little fixes
  1667. 2003-03-26 Ville Palo <[email protected]>
  1668. * DataRowCollection.cs: Bugfixes, implementation,...
  1669. 2003-03-26 Ville Palo <[email protected]>
  1670. * DataColumn.cs: If DataType if set to something else than short, int
  1671. or long and AutoIncrement is true, AutoIncrement is must set to false.
  1672. 2003-03-26 Gonzalo Paniagua Javier <[email protected]>
  1673. * DataRow.cs:
  1674. (BeginEdit): fixed array bound problem when a column has been added.
  1675. (EndEdit): just assign proposed to current as proposed is set to null.
  1676. This also fixes another array boudn problem.
  1677. 2003-03-21 Alan Tam <[email protected]>
  1678. * DataRow.cs: Fixed problems in accessers, BeginEdit, CancelEdit,
  1679. EndEdit and AcceptChanges to act correctly according to DataRowState
  1680. and DataRowVersion.
  1681. * DataRowCollection.cs: Call AttachRow and DetachRow when a row is
  1682. attached and detached from the collection.
  1683. 2003-03-20 Alan Tam <[email protected]>
  1684. * DataColumn.cs: Store empty string for Expression when null is passed in.
  1685. Classes generated by XSD.exe passes null by default.
  1686. 2003-03-16 Ville Palo <[email protected]>
  1687. * DataColumnCollection.cs: Tiny clean up
  1688. 2003-03-16 Ville Palo <[email protected]>
  1689. * DataColumn.cs: little fixes.
  1690. * DataColumnCollection.cs: Lots of little fixes and improvments.
  1691. 2003-03-12 Alan Tam <[email protected]>
  1692. * DataSet.cs: Fixed a bug that the file written does not close correctly.
  1693. 2003-03-08 Alan Tam <[email protected]>
  1694. * DataRelationCollection.cs: Removed the mis-overridden methods
  1695. * DataRow.cs: Fixed an attribute
  1696. * DataSet.cs: Fixed the modifiers
  1697. 2003-03-06 Aleksey Demakov <[email protected]>
  1698. * DataTableCollection.cs: The Contains (string name),
  1699. IndexOf (string name) methods, and item[string name] indexer
  1700. now behave more like .NET with respect to case-sensitivity.
  1701. That is if there is an exactly matching item then this one is used.
  1702. If there is only one item differing in case then it used.
  1703. If there are more than one item differing in case then
  1704. Contains returns false, IndexOf returns -1, and item[]
  1705. throws an ArgumentException.
  1706. 2003-02-28 Ville Palo <[email protected]>
  1707. * ExpressionElement.cs: More implementation.
  1708. 2003-02-28 Alan Tam <[email protected]>
  1709. * DataSet.cs: Changed WriteTable so that it now calls the newly written
  1710. WriteObjectXml to direct the call to the respective XmlConvert method.
  1711. This fixes the wrong format written to XML files of bool, float,
  1712. double, DateTime and TimeSpan types.
  1713. 2003-02-25 Alan Tam <[email protected]>
  1714. * DataRelation.cs: Added SetDataSet for DataSetRelationCollection to use.
  1715. * DataRelationCollection.cs: Implemented AddRange and Contains.
  1716. Implemented AddRange, Clear, List and RemoveCore for DataSetRelationColletion.
  1717. Implemented AddCore, List and RemoveCore for DataTableRelationCollection.
  1718. Reimplemented most Add methods to eliminate duplicated checks.
  1719. Centralized RelationName generation procedure in GetNextDefaultRelationName.
  1720. 2003-02-25 Alan Tam <[email protected]>
  1721. * DataColumn.cs: Fixed wrong storage representation of Expression
  1722. (using empty string instead of null) so that ToString() returns nothing.
  1723. * DataColumnCollection.cs: Reimplemented GetNextDefaultColumnName so that
  1724. auto column naming now works as expected. Reimplemented some Add methods
  1725. to eliminate code duplication.
  1726. 2003-02-19 Ville Palo <[email protected]>
  1727. * DataTable.cs: DataTable.CaseSensitive follows parent
  1728. DataSet.CaseSensitive property if DataTable.CaseSensitive has never
  1729. been changed directly from DataTable
  1730. 2003-02-19 Ville Palo <[email protected]>
  1731. * DataSet.cs: When CaseSensitive property is changed all of the Tables
  1732. of DataSet have to change too
  1733. 2003-02-19 Daniel Morgan <[email protected]>
  1734. * InternalDataCollectionBase.cs: revert change to field
  1735. to fix build
  1736. * DataViewManager.cs
  1737. * DataView.cs
  1738. * DataTable.cs
  1739. * DataSet.cs: commented use of DesignerAttribute
  1740. because it broke the build. According to MSDN,
  1741. DesignerAttribute does not have a zero-argument constructor
  1742. 2003-02-18 Ville Palo <[email protected]>
  1743. * DataColumnCollectin.cs: Little fix for indexer and case sensitivity
  1744. 2003-02-18 Alan Tam <[email protected]>
  1745. * DataRow.cs: Implemented GetParentRow and GetParentRows.
  1746. * DataSet.cs: Added stub for HasChanges, InferXmlSchema,
  1747. OnPropertyChanging, OnRemoveRelation, OnRemoveTable,
  1748. RaisePropertyChanging.
  1749. * DataTable.cs: Implemented NewRowArray.
  1750. * DataTablePropertyDescriptor: Fixed a modifier.
  1751. * InternalDataCollectionBase.cs: Fixed modifiers. Implemented SyncRoot.
  1752. * PropertyCollection.cs: Minor fix.
  1753. * ConstraintCollection.cs DataColumn.cs DataColumnCollection.cs
  1754. * DataRelation.cs DataRelationCollection.cs DataRow.cs
  1755. * DataRowCollection.cs DataRowState.cs DataSet.cs DataTable.cs
  1756. * DataTableCollection.cs DataTablePropertyDescriptor.cs DataView.cs
  1757. * DataViewManager.cs DataViewRowState.cs DataViewSettingCollection.cs
  1758. * ForeignKeyConstraint.cs InternalDataCollectionBase.cs
  1759. * PropertyCollection.cs UniqueConstraint.cs: Added missing attributes
  1760. 2003-02-08 Ville Palo <[email protected]>
  1761. * ExpressionElement.cs: More implementation
  1762. 2003-02-05 Alan Tam <[email protected]>
  1763. * DataSet.cs: Added framework for DataSet.Update Implemented missing
  1764. methods GetSchemaSerializable, GetSerializationData,
  1765. ReadXmlSerializable, ShouldSerializeRelations and ShouldSerializeTables
  1766. for DataSet
  1767. * DataTable.cs: Implemented missing methods CreateInstance and
  1768. GetRowType for DataTable
  1769. 2003-02-03 Ville Palo <[email protected]>
  1770. * DataSet.cs: Implemented private method MapType for
  1771. mapping datatypes for XmlSchema
  1772. 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
  1773. * DataView.cs: implemented Dispose.
  1774. 2003-01-30 Ville Palo <[email protected]>
  1775. * ExpressionElement.cs: Added new file. This file is for parsing
  1776. and DataData.Select () -methods and DataColumn.Expression -property
  1777. * DataTable.cs: Implemented Select(string) -method
  1778. 2003-01-28 Ville Palo <[email protected]>
  1779. * DataSet.cs: One little fix to writing xml
  1780. 2003-01-27 Ville Palo <[email protected]>
  1781. * XmlSchemaMapper.cs: Some fixes.
  1782. * DatSet.cs: Some XmlFixes and BeginInit ()/ EndInit () -fix
  1783. 2003-01-24 Ville Palo <[email protected]>
  1784. * UniqueConstraint.cs: Do not set columns Unique property true
  1785. as a default.
  1786. * ForeignKeyConstraint.cs: Add UniqueConstraint to parent Table
  1787. 2003-01-18 Ville Palo <[email protected]>
  1788. * DataTableCollection.cs: Now names new DataTable if it doesn't
  1789. already have a name.
  1790. 2003-01-17 Ville Palo <[email protected]>
  1791. * XmlSchemaMapper.cs: Improvments.
  1792. * XmlConstaints.cs: Added more constants.
  1793. * DataSet.cs: Improvments of reading and writing xml
  1794. * DataColumn.cs: Added default values of properties.
  1795. 2003-01-14 Ville Palo <[email protected]>
  1796. * XmlSchemaMapper.cs: Some improvments
  1797. 2003-01-13 Ville Palo <[email protected]>
  1798. * DataRowCollection.cs: Added IndexOutOfRangeException
  1799. * DataTableCollection.cs: Added OnCollectionChanging and
  1800. OnCollectionChanged events.
  1801. * DataSet.cs: Many fixes. Implemented Clone () and Copy () -methods
  1802. * DataTable.cs: Implemented Copy () and Clone () methods.
  1803. * XmlDataLoader.cs: some fixes.
  1804. * XmlSchemaMapper.cs: comments.
  1805. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  1806. * DataColumnPropertyDescriptor.cs: store columnIndex in the .ctor.
  1807. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  1808. * DataColumnPropertyDescriptor.cs: fixed typo.
  1809. * DataViewManagerListItemTypeDescriptor.cs: added new internal property
  1810. to get the DataViewManager and removed TablePD class.
  1811. * DataTablePropertyDescriptor.cs: TablePD class is now this one as
  1812. suggested by danmorg.
  1813. 2003-01-06 Ville Palo <[email protected]>
  1814. * XmlDataLoader.cs: Moved diffgram stuff to new internal class
  1815. XmlDiffLoader.
  1816. * XmlDiffLoader.cs: new class for diffgrams. Added handling of
  1817. diffgr:Errors and some fixes and changed XmlReader to XPathNavigator.
  1818. 2003-01-06 Gonzalo Paniagua Javier <[email protected]>
  1819. * DataView.cs: made dataViewManager internal.
  1820. * DataViewManager.cs: use ICustomTypeDescriptor. We don't want the
  1821. properties of the object, but the values of the columns present in a
  1822. row.
  1823. * DataViewManagerListItemTypeDescriptor.cs: implemented GetProperties,
  1824. which returns a PropertyDescriptorCollection. Created a new class
  1825. derived from PropertyDescriptor that treats Table as an object whose
  1826. properties are DataRowView.
  1827. 2003-01-04 Ville Palo <[email protected]>
  1828. * XmlSchemaMapper.cs: Added handling for Constraints, Attributes.
  1829. 2003-01-04 Ville Palo <[email protected]>
  1830. * DataColumn.cs: ExtendedProperties is by default !null-
  1831. 2003-01-04 Ville Palo <[email protected]>
  1832. * DataColumnCollection.cs: Add (DataColumn Column) -method didn't
  1833. set column's ordinal.
  1834. 2003-01-02 Ville Palo <[email protected]>
  1835. * DataSet.cs:
  1836. * XmlDataLoader.cs: XmlReader closing fixes.
  1837. * XmlSchemaReader.cs: Added support for ref=
  1838. 2003-01-01 Ville Palo <[email protected]>
  1839. * DataSet.cs:
  1840. - Added XmlReader and XmlWriter Closing.
  1841. - Moved ReadXmlSchema stuff to new internal class XmlSchemaMapper.
  1842. * XmlSchemaMapper.cs
  1843. - Much better way IMHO to map xmlschema than the old one in
  1844. DataSet.cs. Its, more flexible, cleaner, ...
  1845. 2002-12-29 Ville Palo <[email protected]>
  1846. * XmlDataLoader.cs: Reading diffgrams.
  1847. 2002-12-29 Ville Palo <[email protected]>
  1848. * DataRow.cs: Little fix to indexer and DataColumnCang* trigger fixes.
  1849. * DataTable.cs: Added ChanginDataColumn () for triggering
  1850. DataColumnChanging event
  1851. 2002-12-28 Ville Palo <[email protected]>
  1852. * DataSet.cs: Indentations to WriteXmlSchema () and one little fix
  1853. 2002-12-28 Ville Palo <[email protected]>
  1854. * DataSet.cs: Indentations to WriteXml ()
  1855. 2002-12-27 Ville Palo <[email protected]>
  1856. * DataSet.cs:
  1857. * XmlDataLoader.cs: Moved ReadXml -stuff from DataSet.cs to new
  1858. class XmlDataLoader.cs
  1859. 2002-12-19 Ville Palo <[email protected]>
  1860. * DataSet.cs Implemented ReadXml with XmlReadMode.ReadSchema
  1861. 2002-12-18 Ville Palo <[email protected]>
  1862. * DataSet.cs: Started to implement ReadXml-methods.
  1863. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  1864. * DataSet.cs: implemented DefaultViewManager and GetList.
  1865. * DataViewManager.cs: a bit of work on IList and ITypedList needed by
  1866. DataList in System.Web.
  1867. * DataViewManagerListItemTypeDescriptor.cs: custom type descriptor for
  1868. DataViewManager.
  1869. 2002-12-16 Ville Palo <[email protected]>
  1870. * DataRow.cs
  1871. * DataTable.cs: Fixed NullException (rollback -event)
  1872. * DataSet.cs: WriteXml -method does not anymore write <?xml... row.
  1873. 2002-12-15 Ville Palo <[email protected]>
  1874. * DataRow.cs:
  1875. * DataRowCollection.cs: Moved event triggering from DataRow to
  1876. DataRowCollection.
  1877. 2002-12-09 Ville Palo <[email protected]>
  1878. * DataSet.cs: Little fix to WriteTable () -method
  1879. and DoReadXmlSchema () -method.
  1880. 2002-12-06 Ville Palo <[email protected]>
  1881. * DataSet.cs: Clean up to reading xmlschema. This looks much better
  1882. now (work better too), but it not working correctly yet.
  1883. 2002-12-04 Ville Palo <[email protected]>
  1884. * DataRow.cs:
  1885. * DataRowCollection.cs: Added some event handlins stuff.
  1886. * DataSet.cs: Some fixes.
  1887. * DataTable.cs: Added event handlers.
  1888. 2002-11-30 Ville Palo <[email protected]>
  1889. * DataRowChangeEventArgs.cs: Implemented Action and Row properties
  1890. 2002-11-30 Ville Palo <[email protected]>
  1891. * System.Data/DataRow.cs: Added internal property XmlDataID
  1892. 2002-11-29 Ville Palo <[email protected]>
  1893. * DataSystem.Data.DataTableCollection.cs:
  1894. Removed HashTable. There could be situations where DataTable
  1895. is added to collection before it hava TableName. So using
  1896. HashTable is impossible.
  1897. 2002-11-19 Carlos Guzmán Álvarez <[email protected]>
  1898. * DataRow.cs: an object that is equal to null
  1899. should be allowed to be set in this indexer too
  1900. to be like .NET
  1901. 2002-11-06 Daniel Morgan <[email protected]>
  1902. * DataColumnPropertyDescriptor.cs: added file
  1903. * System.Data/DataRowView.cs: started implementation
  1904. * DataTable.cs: stubbed more interfaces. Implemented
  1905. IListSource.GetList()
  1906. * DataView.cs: stubbed more interfaces. Implemented
  1907. some properties and methods: GetEnumerator(),
  1908. ITypedList.GetItemProperties, Item indexer, CopyTo()
  1909. 2002-05-18 Nick Drochak <[email protected]>
  1910. * DataRow.cs: Fix typo.