* ChangeLog : Fix for misspelled words.
[mono.git] / mcs / class / System.Data / System.Data / ChangeLog
1 2004-06-17  Boris Kirzner  <borisk@mainsoft.com>
2
3         * ChangeLog : Fix for misspelled words.
4
5 2004-06-17  Boris Kirzner  <borisk@mainsoft.com>
6
7         * DataRowCollection.cs : Removed onColumnRemoved since it is not in use.
8         
9 2004-06-17  Boris Kirzner  <borisk@mainsoft.com>
10
11         * DataTable.cs :
12           - Table stores default values for columns in special default values row. 
13           It is allocated once (in NewRow).
14           - DataTable.Copy rewrited. It works with uninitialized rows for better perfomance.
15           - OnRemoveColumn has nothing to perform by now.
16
17 2004-06-17  Boris Kirzner  <borisk@mainsoft.com>
18
19         * DataRow.cs : 
20           - Changed access of original, current and proposed indexes to internal.
21           - ColumnErrors reviewed : now column errors stored in ArrayList and allocated on demand only.
22           - Added new DataRow constructor that creates uninitialized DataRow (used in DataTable.Copy).
23           - Use DataContainer.CopyValue and default values row for faster set of default values in row.
24           - SetColumnValue become CheckValue. Now it does not changes the value, but only checks for its correctness.
25           Care about Null and DBNull values is now in DataContainer.
26           - Use DataColumn.AutoIncrementValue and GetInt64 for faster set of autoincrement value.
27           - Use Datacontainer.CopyValue and default values row to speed up CheckChildRows.
28           - Fix in CopyState : clone column errors.
29           - Removed CollectionChanged and onColumnRemoved since we are not using both of them anymore.
30
31 2004-06-17  Boris Kirzner  <borisk@mainsoft.com>
32
33         * DataColumnCollection.cs : 
34           - Fix : Add() now delegates to Add(DataColumn).
35           - autoIncrement list holds DataColumn objects, and not just column names.
36
37 2004-06-17  Boris Kirzner  <borisk@mainsoft.com>
38
39         * DataColumn.cs : 
40           - AutoIncrementValue fixes. Now AutoIncrement uses DataContainer.GetInt64 to avoid boxing.
41           - DefaultValue fixes. Default value from now on is also stored in special record in 
42           DataTable, so we're able to set default value for the column faster (typed).
43         
44         
45 2004-06-15  Atsushi Enomoto  <atsushi@ximian.com>
46
47         * DataSet.cs : children of non-root rows were not properly written.
48           Fixed bug #53959.
49
50 2004-06-10 Umadevi S <sumadevi@novell.com>
51         * DataRelation.cs - Constructor
52         - The datatypes of the parentcolumn(s) and the childcolumn(s) should match
53
54 2004-06-06  Atsushi Enomoto  <atsushi@ximian.com>
55
56         * XmlSchemaDataImporter.cs : We should fill Namespace for DataTable.
57
58 2004-06-04  Gert Driesen <drieseng@users.sourceforge.net>
59
60         * Constraint.cs: marked methods internal to fix public API
61         * ConstraintCollection.cs: to fix public API, use 
62         DataTable.fInitInProgress to check whether initialization 
63         of DataTable is in progress
64         * DataColumn.cs: added stubs for missing methods
65         * DataRowBuilder.cs: marked Table property internal to
66         fix public API
67         * DataSet.cs: removed extra empty destructor, marked 
68         OnMergeFailed internal to fix public API
69         * DataTable.cs: use fInitInProgress field to hold init
70         status, to match MS.NET
71         * DataView.cs: added missing attributes on IsOpen
72
73 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
74
75         * DataSet.cs : Use NameTable.Get() before calling LookupNamespace()
76           in XmlNamespaceManager.
77
78 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
79
80         * DataSet.cs : complex table content child was not properly added
81           when it is the only one child in the parent table. Fixed bug #53959.
82
83 2004-06-02  Gert Driesen <drieseng@users.sourceforge.net>
84        * DataTableTypeConverter.cs: added
85        * DataView.cs: added missing attribute on Table property
86        * DataViewManager.cs: moved attribute to correct property
87        * UniqueConstraint.cs: removed extra ReadOnly attribute from
88         IsPrimaryKey property
89
90 2004-06-01  Atsushi Enomoto  <atsushi@ximian.com>
91
92         * DataRow.cs : ColumnsChanged event is not required in .ctor().
93
94 2004-06-01  Atsushi Enomoto  <atsushi@ximian.com>
95
96         * XmlDataReader.cs : type change is required before setting value
97           string to row item.
98
99 2004-05-31  Atsushi Enomoto  <atsushi@ximian.com>
100
101         * DataSet.cs : Loop-break of the last fix was incorrect.
102
103 2004-05-31  Atsushi Enomoto  <atsushi@ximian.com>
104
105         * DataSet.cs : When a row has no parent row but the table has parent
106           relation(s), that row had been always ignored.
107
108 2004-05-31  Atsushi Enomoto  <atsushi@ximian.com>
109
110         * XmlDataInferenceLoader.cs : Fixed GetMappedTable() that incorrectly
111           rejected same-named tables in different hierarchy. Thanks to Boris.
112
113 2004-05-31  Atsushi Enomoto  <atsushi@ximian.com>
114
115         * XmlDiffLoader.cs : Added some Skip() that is required not to go to
116           infinite loop. Thanks to Boris for this fix.
117
118 2004-05-31  Atsushi Enomoto  <atsushi@ximian.com>
119
120         * XmlDataInferenceLoader.cs : XmlSchema elements should not be infered.
121           Thanks to Boris for this fix.
122
123 2004-05-30  Atsushi Enomoto  <atsushi@ximian.com>
124
125         * DataTable.cs : serialization .ctor() should use XmlReadMode.DiffGram
126           for ReadXml(). Thanks to Boris.
127
128 2004-05-27  Boris Kirzner  <borisk@mainsoft.com>
129         * DataRow.cs : 
130                 - CheckReadOnlyStatus : use typed (and faster comparing).
131                 - EndEdit : bug fix - do not dispose record if it holds original version.
132                 - SetValuesFromDataRecord : Take care about autoincrement columns.
133                 
134
135 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
136
137         * MergeManager.cs : don't output debug message to Console.
138
139 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
140
141         * XmlDataInferenceLoader.cs : Namespace are not imported to the table
142           structure. Thanks to Boris Kirzner for the fix.
143
144 2004-05-27  Umadevi S <sumadevi@novell.com>
145          * DataRelationCollection.cs - fixed nunit test errors
146
147 2004-05-27  Umadevi S <sumadevi@novell.com>
148          * DataTableCollection.cs - fixed nunit test errors
149
150 2004-05-21  Atsushi Enomoto  <atsushi@ximian.com>
151
152         * DataColumnCollection.cs : NullReferenceException was thrown when
153           the table was not found.
154         * DataRowCollection.cs :
155           Find() just returns null for null value under MS.NET 1.1.
156           RemoveAt() should also avoid to call AcceptChanges() like Remove().
157         * UniqueConstraint.cs : in AssertConstraint() throw ConstraintException
158           directly under MS.NET (for nunit test).
159
160 2004-05-21  Atsushi Enomoto  <atsushi@ximian.com>
161
162         * XmlSchemaDataImporter.cs : Setting startindex in LastIndexOf() 
163           caused problem on qualified name to get schema Field name.
164
165 2004-05-21  Atsushi Enomoto  <atsushi@ximian.com>
166
167         * XmlDataReader.cs : Now data reader is namespace aware in all places.
168           When table's namespace is different, it entered to infinite loop.
169
170 2004-05-19  Boris Kirzner  <borisk@mainsoft.com>
171         * MergeManager.cs : AdjustSchema now updates by reference new created table,
172         so in Merge you do not need to lookup for it (were unable to do this for unnamed tables).
173         Code styling.
174         
175 2004-05-19  Boris Kirzner  <borisk@mainsoft.com>
176
177         * DataColumn.cs : In set_Item[int] - if autoincrement, adjust next autoincrement value.
178         * DataColumnCollection.cs : fixed parantethes.
179         * DataRow.cs : 
180                 - AcceptChanges : do nothing if row state is unchanged.
181                 - GetChildRows, GetParentRows  : bug fix (use correct index).
182         * DataRowCollection.cs : bug fix (compare all row's values).
183         * DataTable.cs : bug fix (use correct row version).
184         
185 2004-05-20  Atsushi Enomoto  <atsushi@ximian.com>
186
187         * XmlSchemaDataImporter.cs : xs:positiveInteger is mapped to ulong.
188           When content type is Mixed, text column is not required (it is
189           required only when the complex type has no particle). 
190           "Repeated element" column is also created (considering maxOccurs=0 
191           and complex content extension).
192
193 2004-05-20  Atsushi Enomoto  <atsushi@ximian.com>
194
195         * XmlSchemaDataImporter.cs : XmlSchemaGroupBase was not handled 
196           properly.
197
198 2004-05-20  Atsushi Enomoto  <atsushi@ximian.com>
199
200         * XmlSchemaDataImporter.cs : Removed unused code and extra MonoTODO.
201           Fixed relation inference to consider attribute XPath.
202
203 2004-05-19  Atsushi Enomoto  <atsushi@ximian.com>
204
205         * DataColumn.cs : Fixed set_Item[int]. Convert.ToInt64(DBNull.Value)
206           always fails.
207
208 2004-05-19  Boris Kirzner  <borisk@mainsoft.com>
209
210         * DataColumn.cs - removed default member attribute.
211
212 2004-05-19  Boris Kirzner  <borisk@mainsoft.com>
213
214         * DataColumn.cs,
215           DataColumnChangeEventArgs.cs,
216           DataColumnCollection.cs,
217           DataRow.cs,
218           DataRowCollection.cs,
219           DataTable.cs,
220           Index.cs : Data storage in the row is redesigned. Now data is stored in 
221           typed containers inside DataColumn. Row holds its versions as indexes inside
222           each of data container, accessed through the row that holds it.
223
224 2004-05-19  Boris Kirzner  <borisk@mainsoft.com>
225
226         * UniqueConstraint.cs - added comment.
227         
228 2004-05-19  Atsushi Enomoto  <atsushi@ximian.com>
229
230         * XmlDataInferenceLoader.cs : Don't add already-existing DataTable to
231           DataSet.
232
233 2004-05-17  Atsushi Enomoto  <atsushi@ximian.com>
234
235         * DataSet.cs,
236           XmlDataInferenceLoader.cs,
237           XmlDataReader.cs,
238           XmlSchemaDataImporter.cs : XmlDecode every local name to read and
239           XmlEncode every local name to write. This should fix bug #58268.
240
241 2004-05-17  Atsushi Enomoto  <atsushi@ximian.com>
242
243         * DataSet.cs : Implemented ignored namespaces in InferXmlSchema().
244           Supported repeated elements. Removed MonoTODOs.
245         * XmlDataInferenceLoader.cs : Design change to support ignored
246           namespace and repeated elements.
247         * XmlSchemaDataImporter.cs : Added mapping support classes.
248
249 2004-05-15  Atsushi Enomoto  <atsushi@ximian.com>
250
251         * CustomDataClassGenerator.cs :
252           Added property parent "[foo]Row" and children "Get[foo]Row" support
253           for custom DataRow classes.
254           Fixed DataColumn property accessibility (public --> internal).
255
256 2004-05-14  Atsushi Enomoto  <atsushi@ximian.com>
257
258         * CustomDataClassGenerator.cs :
259           - Put classes inside custom DataSet class.
260           - Added automatic DataRelation creation support.
261           - Added Constraints creation support. That is done separate from
262             relations, since they might be independently created.
263           - Added non-MS public DataRelation fields.
264           - Removed extraneous "DataRelation type generation" code.
265           - Fixed custom_dataset.Initialize() not to create "c" field that
266             was created more than once.
267           - Implemented AddxxxRow() that takes parameters for every column.
268
269 2004-05-14  Atsushi Enomoto  <atsushi@ximian.com>
270
271         * XmlSchemaDataImporter.cs : When primary key is used more than once,
272           DataRelation borked because of empty parent column name.
273
274 2004-05-14  Atsushi Enomoto  <atsushi@ximian.com>
275
276         * XmlSchemaDataImporter.cs : When Creating constraints with related
277           to DataRelation creation, also set PrimaryKey to the parent table.
278
279 2004-05-14  Atsushi Enomoto  <atsushi@ximian.com>
280
281         * XmlSchemaDataImporter.cs : 
282           Design change to add indirect table and relation structures.
283           Support for "relation" annotation for local element.
284           Support for repeatable simple element column (maxOccurs > 1).
285           Fixed handling of Nested property on DataRelation (for globally
286           annotated relation, Nested is false).
287
288 2004-05-13  Atsushi Enomoto  <atsushi@ximian.com>
289
290         * DataRow.cs : Added DataElement property to avoid storing every row-
291           element mapping. It stored even for nodes that should be removed.
292
293 2004-05-13  Umadevi S <sumadevi@novell.com>
294
295         * RelationshipConverter.cs - Stubbed this class
296         * DataRelation.cs - added TypeConveterAttribute
297
298 2004-05-13  Umadevi S  <sumadevi@novell.com>
299
300         * DataColumnCollection.cs - Added ResDescriptionAttribute
301         * DataRelation.cs - Added TypeConverterAttribute
302         * DataRelationCollection.cs - Added DefaultPropertyAttribute
303         * DataRowView.cs - Added GetHashCode method with a TODO tag
304         * DataSet.cs - Added DesignerAttribute
305         * DataView.cs - Added DesignerAttribute
306         * DataViewManager.cs - Added DesignerAttribute
307         * DataViewSetting.cs - Added TypeConverterAttribute
308         
309 2004-05-12  Atsushi Enomoto  <atsushi@ximian.com>
310
311         * DataRow.cs : Added XmlDataElement initialization code.
312
313 2004-05-11  Atsushi Enomoto  <atsushi@ximian.com>
314
315         * XmlDataInferenceLoader.cs :
316           It now requires XmlDocument as input.  Improved identification of
317           DataSet element.  Removed extra lines.
318           Moved boresome design notes to bottom of the source and
319           added standalone runnable driver (not included on build).
320         * DataSet.cs :
321           Update with related to the change above.
322           WriteXml() should call Flush() after writing. This fixes bug #58327.
323         * XmlSchemaDataImporter.cs :
324           Improved indentification of DataSet element.
325
326 2004-05-11  Gert Driesen (drieseng@users.sourceforge.net)
327         * DataTable: marked initStatus enum internal
328
329 2004-05-09  Gert Driesen (drieseng@users.sourceforge.net)
330         * DataTable.cs: removed TypeConverterAttribute, marked RowsExist
331         methods internal
332         * DataRowView.cs: removed extra Error property
333         * DataRow.cs: reduced accessibility of CollectionChanged method 
334         to private
335         * DataColumnPropertyDescriptor.cs: made class internal
336         * DataColumn.cs: removed extra TypeConvertorAttribute
337         * ConstrainCollection.cs: marked PostEndInit method internal
338
339 2004-05-07  Atsushi Enomoto  <atsushi@ximian.com>
340
341         * DataSet.cs : 
342           In WriteXmlSchema(), when complex type contains simple type content
343           attributes must not added to XmlSchemaComplexType directly. It
344           causes schema compilation error.
345           DataRelation should not be output when related columns are hidden.
346
347 2004-05-07  Atsushi Enomoto  <atsushi@ximian.com>
348
349         * XmlDataInferenceReader.cs : Added. It does InferXmlSchema() (it is
350           also expected to do ReadXml(), but I will remove that feature and
351           support column reordering).
352         * XmlSchemaDataImporter.cs : Always initialize dataset name.
353           Always set Nested and primary key for parent table.
354         * XmlDataReader.cs : Now it is used.
355           Top level element might not match to dataset name nor any table 
356           name, but still possible to read content tables.
357           Handle empty element correctly in some places.
358           Handle Fragment mode (read up XmlReader to the end).
359         * DataSet.cs : Modified InferXmlSchema() and ReadXml() to use
360           XmlDataInferenceLoader and XmlDataReader.
361
362 2004-05-06  Atsushi Enomoto  <atsushi@ximian.com>
363
364         * DataSet.cs :
365           Eliminated CRLF injection.
366           More clear message in Clear().
367           Updates reflecting XmlSchemaDataImporter change.
368           Added duplicate check for XmlSerializerNamespaces in BuildSchema().
369           Don't use xmlns attribute for UnhandledAttributes (its not mandatory
370           but that depends on different behavior from ms.net).
371           Set locale also for DataTable.
372           Add xs:element only when target namespace matches to the
373           element's namespace. Otherwise, add xs:import for external namespace.
374           Put xs:sequence for dataset element's particle _only when_ actual
375           contents exist.
376
377 2004-05-06  Atsushi Enomoto  <atsushi@ximian.com>
378
379         * XmlDataReader.cs : Added. This class will work better when our
380           schema inference and schema read engine gets improved. (It contains
381           standalone testable Driver class.)
382
383 2004-05-06  Atsushi Enomoto  <atsushi@ximian.com>
384
385         * ForeignKeyConstraint.cs : Check step change. Existence then column
386           validity. just for tests.
387         * XmlSchemaDataImporter.cs : code simplification. reduced extraneous
388           fields.
389
390 2004-05-05  Atsushi Enomoto  <atsushi@ximian.com>
391
392         * DataSet.cs : Ignore empty content only when output type is diffgram.
393
394 2004-05-05  Atsushi Enomoto  <atsushi@ximian.com>
395
396         * CustomDataClassGenerator.cs : Modified that DataSet contains each
397           DataTable field so that each table property can access them directly.
398           (plus, modified standalone code driver code: shouldn't affect)
399
400 2004-05-05  Boris Kirzner  <borisk@mainsoft.com>
401
402         * DataView.cs , DataRowView.cs : Added implementation to basic methods and properties.
403           
404 2004-05-05  Atsushi Enomoto  <atsushi@ximian.com>
405
406         * XmlSchemaDataImporter.cs : 
407           SimpleContent column support.
408           Annotated relation support.
409           Top-level element is counted only when its type is complex.
410           xs:anyType is no longer treated as complex type.
411           dataset existence is mandatory now. 
412           Improved DataType and DefaultValue support.
413           Attribute namespace is properly handled now.
414           Prohibited attribute is now treated as hidden column.
415           Reject list or union simple type.
416
417           Still incomplete 1) to read relationship in some cases, 2) to 
418           determine whether an element is dataset or table, 3) thus to
419           exclude extraneous column, 4) to remove extraneous *_Id column.
420
421 2004-05-05  Atsushi Enomoto  <atsushi@ximian.com>
422
423         * DataTable.cs :
424           We had better reuse DataSet's ReadXmlSchema() and ReadXml() in
425           serialization .ctor() (thus schema read/inference should be easier).
426           DataRowSorter should consider Table's Locale.
427
428 2004-05-05  Atsushi Enomoto  <atsushi@ximian.com>
429
430         * DataColumnCollection.cs : We already had AutoIncrementValue(), so
431           use it instead of duplicating logic.
432
433 2004-05-05  Atsushi Enomoto  <atsushi@ximian.com>
434
435         * ConstraintCollection.cs :
436           Use Table.CaseSensitive and Table.Locale to compare strings.
437           Duplicate constraint name exception does not occur under .NET 1.1.
438
439 2004-05-04  Lluis Sanchez Gual  <lluis@ximian.com>
440
441         * XmlSchemaDataImporter.cs: Added little type check.
442
443 2004-05-04  Lluis Sanchez Gual  <lluis@ximian.com>
444
445         * DataSet.cs: Implemented support for runtime serialization. Fixed support
446           for xml serialization.
447         * XmlDiffLoader.cs: Skip diffgram element when it is empty.
448
449 2004-04-30  Umadevi S  <sumadevi@novell.com>
450         * DataColumnCollection.cs : Fixed nunit test errors, removed TODOs
451         * DataTableCollection.cs  : Tested and removed TODO
452         * TypedDataSetGeneratorException.cs : Fixed a couple of TODOs   
453
454 2004-04-29  Atsushi Enomoto  <atsushi@ximian.com>
455
456         * DataRow.cs : My previous patch unintentionally reverted Boris patch.
457
458 2004-04-29  Boris Kirzner <borisk@mainsoft.com>
459
460         * UniqueConstraint.cs : Constraint columns becaomes unique after adding constraint ifand only if 
461         constraint is defined on single column.
462
463 2004-04-29  Atsushi Enomoto  <atsushi@ximian.com>
464
465         * DataRowCollection.cs : .NET 1.1 throws InvalidConstaintException,
466           not ArgumentException (maybe changed after 1.1).
467
468 2004-04-29  Atsushi Enomoto  <atsushi@ximian.com>
469
470         * DataRow.cs : When Column was added and it was AutoIncrement column,
471           it extended the item object array incorrectly.
472           (Plus tiny comment and incorrect indentation fix.)
473
474 2004-04-29  Boris Kirzner <borisk@mainsoft.com>
475
476         * MergeManager.cs : added ( incomplete yet ) support for merging DataSet schema.
477
478 2004-04-29  Boris Kirzner <borisk@mainsoft.com>
479
480         * DataRow.cs : Bug fix in CopyValuesToRow().
481         
482 2004-04-29  Boris Kirzner <borisk@mainsoft.com>
483
484         * UniqueConstraint.cs : There is no reason to mark constraint's columns as unique, because
485           each of the columns should not be unique, but only all the constraint's columns together.
486         
487 2004-04-28  Boris Kirzner <borisk@mainsoft.com>
488         * DataRow.cs :
489           - Perfomance fixes: 
490                 - Added using of list of autoIncrement columns
491                 - SetColumnValue receives also DataColumn to avoid duplicate lookup in DatacolumnCollection
492           - Fix in CheckNullConstraints
493           - Fix in this[] and HasVersion() : when evaluating an expression deleted rows values can be accessed.
494           - Fix in SetColumnValue() , added CanAccess() method to avoid case of accessing internal array values berore it actually allocated.
495           - Added onColumnRemoved() method to threat column removal accurately.
496         
497         * DataRowCollection.cs :
498           - Added using of DataRow._nullConstraintViolation (for perfomance fix in EndLoadData())
499           - Added method onColumnRemoved() - calls each row's onColumnRemoved() (to ensure column removal is treated accurately)
500         
501         * DataTable.cs :
502           - Call DataRowCollection.onColumnRemoved() in OnRemoveColumn() (to ensure column removal is treated accurately)
503         
504         * DataColumnCollection.cs :
505           - Perfomance fixes :
506                 - collection holds a list of its autoIncrement columns (avoids unnesessary lookup through whole collection)
507                 - collection holds mapping from column names to DataColumn objects (avoids lookup through whole collection).
508                 - automatic creation of column names rewrited (bug fixes + perfomance improvement)
509         
510         * DataColumn.cs :
511           - Uses autoincrement list of a table
512
513 2004-04-27  Atsushi Enomoto  <atsushi@ximian.com>
514
515         * XmlDataLoader.cs : Even when it should ignore schema, it was 
516           infering schema.
517         * XmlSchemaDataImporter.cs : DataRelation creation support.
518           Improved "DataSet" element handing. When attributes are on the
519           element, it is not a "DataSet" element.
520           Fixed parent key column name.
521           Unique name creation is not required. Just raise an error.
522           Fill facet also for attribute types.
523
524 2004-04-27  Atsushi Enomoto  <atsushi@ximian.com>
525
526         * DataRow.cs : Null check for CheckReadOnlyStatus() and
527           CheckNullConstraints(), with some coding guideline fixes.
528           Type check should be done by Type instance comparison.
529
530 2004-04-27  Atsushi Enomoto  <atsushi@ximian.com>
531
532         * DataColumnCollection.cs : When add a column to the collection, fill
533           auto-increment column.
534
535 2004-04-26  Boris Kirzner <borisk@mainsoft.com>
536
537         * DataColumn.cs : Small perfomance fix (avoid unnesessary string concatenation).
538         
539 2004-04-26  Atsushi Enomoto  <atsushi@ximian.com>
540
541         * CustomDataClassGenerator.cs : Added.
542         * TypedDataSetGenerator.cs : Implemented Generate().
543           Changed GenerateIdName() to call CustomDataClassGenerator.MakeSafeName
544         * XmlSchemaDataImporter.cs : Table Locale should be supplied.
545
546 2004-04-25  Boris Kirzner <borisk@mainsoft.com>
547
548         * DataTable.cs : Small perfomance fix (avoid unnesessary string concatenation).
549         
550 2004-04-25  Boris Kirzner <borisk@mainsoft.com>
551
552         * Constraint.cs : Small perfomance fix (avoid unnesessary string concatenation).
553
554 2004-04-23 Umadevi S (sumadevi@novell.com)
555         *  DataRow.cs: Checked BeginEdit,EndEdit,CancelEdit and Delete methods
556            - Added error handling to the above methods
557
558 2004-04-22  Atsushi Enomoto  <atsushi@ximian.com>
559
560         * DataSet.cs : Data should be read when mode is IgnoreSchema (well,
561           the support is incomplete yet).
562         * XmlDataLoader.cs : 
563           Reverted ReadModeSchema() argument change. XmlReadMode would be 
564           useful to handle IgnoreSchema.
565           Don't overwrite DataSetName when mode is not such kind.
566           Set Prefix and Namespace as well as DataSetName.
567           AllowDBNull looks set false by default for element column.
568           Set unique constraint as primary key when infering the table schema.
569
570 2004-04-21  Atsushi Enomoto  <atsushi@ximian.com>
571
572         * DataSet.cs : 
573           Never set null string for Prefix and Namespace.
574           In InferXmlSchema() when null XmlReader is passed, just do nothing.
575           In WriteXmlSchema(string), earlier try block.
576           In BuildSchema(), try to add serialization namespaces for each
577           namespaces in DataSet/DataTable/DataColumn.
578           Removed namespace argument from WriteColumnAsElement() and don't
579           overwrite when namespace is "". This fixes bug #57330.
580         * DataColumn.cs : For Namespace and Prefix, never set null.
581
582 2004-04-21  Boris Kirzner <borisk@mainsoft.com>
583
584         * XmlSchemaMapper.cs : Check for not null unique constraint in ReadXmlSchemaKeyref()
585           before creating and adding foreign key constraint and relation. 
586
587 2004-04-21  Boris Kirzner <borisk@mainsoft.com>
588
589         * MergeManager.cs : In AdjustSchema() source table clone should be added
590           and not the table itself. 
591
592 2004-04-21  Boris Kirzner <borisk@mainsoft.com>
593
594         * DataSet.cs : 
595           - CaseSensitive : Additional fix (removed unnesessary assignment).
596           - CopyProperties : Do not try to copy ExtendedProperties if the collection is empty.
597
598 2004-04-21  Boris Kirzner <borisk@mainsoft.com>
599
600         * DataTable.cs : Ensure that DataSet property is not null before using it in Clear().
601           
602 2004-04-20  Boris Kirzner <borisk@mainsoft.com>
603
604         * DataTable.cs : 
605           - EndLoadData() : perfomance fix in case of null constraint violation
606             during data load (also in DataRow.cs).
607           - CaseSensitive : If DataTable belongs to DataSet it should always use
608             DataSet.CaseSensitive untill explicitly changed.
609           - CopyProperties() : do not try to copy ExtendedProperties if the collection is empty.
610           
611         * DataRow.cs :
612           - Pefromance fix in case of null constraint violation
613             during data load (also in DataTable.cs).
614           - CollectionChanged() : use correct column number after new DataColumn was added
615             (differs in case some DataColumn was previosly removed).
616           - EndEdit() - throw away  proposed values only after CheckChildRows() complete.
617
618 2004-04-20  Boris Kirzner <borisk@mainsoft.com>
619
620         * DataColumnCollection.cs : Since unique constraint is added now
621           in DataColumn.SetTable() the additional creation of constraint in 
622           DataColumnCollection.Add() is redundant and causes exception - fixed.
623           
624 2004-04-19  Atsushi Enomoto  <atsushi@ximian.com>
625
626         * XmlDataLoader.cs : Added "never add data rows" mode.
627           Removed unused code. However, it is temporary fixes to unify
628           ReadXml() and InferXmlSchema().
629         * DataSet.cs : Implemented InferXmlSchema(), though it is incomplete.
630
631           I'll create another XmlDataLoader since there are many problems
632           such that 1) it is too waste to read the entire xml into an
633           XmlDocument, 2) it does not handle attributes correctly, and 3) it
634           must handle "ignored namespaces".
635
636 2004-04-19  Atsushi Enomoto  <atsushi@ximian.com>
637
638         * Added XmlSchemaDataImporter.cs (new schema reader).
639         * DataSet.cs : Use XmlSchemaDataImporter (right now for DataSet only)
640           for ReadXmlSchema().
641           Let schema reading work to ReadXmlSchema().
642           Don't return ReadSchema when argument read mode was DiffGram.
643
644 2004-04-15 Umadevi S (sumadevi@novell.com)
645         *  Updated Clone/Copy methods in DataSet along with Testcase
646         *  ForeignKeyConstraint.cs - special ctor implemented 
647             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).
648         * Changes in  ConstraintCollection.cs for the above
649         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.
650         
651
652 2004-04-15  Atsushi Enomoto  <atsushi@ximian.com>
653
654         * XmlSchemaMapper.cs : set parent key and foreign key info to 
655           DataRelation when reading refkey constraints.
656           Supply constraint name for fkey.
657
658 2004-04-15  Atsushi Enomoto  <atsushi@ximian.com>
659
660         * XmlDataLoader.cs : Don't overwrite existing DataSetName. When read
661           mode is Auto, just ignore the schema if there is already schema info.
662         * DataSet.cs : Similarly ignore schema info for XmlReadMode = Auto.
663
664 2004-04-14  Atsushi Enomoto  <atsushi@ximian.com>
665
666         * DataSet.cs :
667           - In MS output, XML declaration looks to have standalone decl (yes).
668           - ReadXml(reader) just calls to ReadXml(reader, XmlReadMode.Auto)
669           - ReadXml(reader, mode)
670             1) return originally specified mode, instead of (always) Auto. 
671             2) Check empty reader.
672             3) Check diffgram schema and content separately.
673             4) When diffgram exists, remaining (the same-level) contents 
674                won't be consumed. 
675             5) Similar fact should be applied, but somewhat different. 
676                InferSchema and IgnoreSchema just skips, Fragment reads both
677                schema and content, others just reads schema.
678           - Removed unused code.
679         * XmlDataLoader.cs :
680           - Read() should skip in some ReadMode.
681           - Don't compare schema element name as case-insensitive (well,
682             should schemas be checked here?)
683           - Avoided BuildDocument() not to create confusing DataSet
684             document element.
685           - Don't add any tables when reader has single element.
686         * XmlDiffLoader.cs :
687           When target table was not found, MS.NET doesn't raise an error.
688         * XmlSchemaMapper.cs :
689           When XmlSchema.Read() left xml reader at </xs:schema>, read once.
690
691 2004-04-13  Atsushi Enomoto  <atsushi@ximian.com>
692
693         * DataSet.cs :
694           - InferXmlSchema(): Throw explicit NotImplementedException now.
695           - Don't put XML declaration everywhere. Write just for filename arg.
696           - xmlns="" should not be written. Maybe WebService problem is 
697             because default namespace is overwritten. This patch will keep
698             the WS problem away and actually fixes some unit tests (i.e. use
699             explicit String.Empty for null namespace in WriteStartElement()).
700           - MoveToContent() should always be called, not only when 
701             LocalName="xml". It will ignore prolog (DTD, PI, comment etc.).
702           - Even XmlReadMode is DiffGram, reader might not be "diffgram"
703             element. As to MSDN, diffgram does not contain schema.
704
705 2004-04-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
706
707         * DataTable.cs: made _initStatus private so that System.Data is CLS
708         compliant.
709
710 2004-04-13 Umadevi S   <sumadevi@novell.com>
711         *  UniqueConstraint.cs:
712         *  ConstraintCollection.cs:
713         *  DataTable.cs:
714         - Implemented a Constructor for UniqueConstraint.cs
715         - Used  EndInit on DataTable  to call a delegate which adds the
716           constraints passed to the most recent call of AddRange().Used
717           AddRange() on ConstraintCollection to check whether
718           DataTable.BeginInit has occurred.  If yes, save the argument
719           constraint collection passed, then return.  If no, Check whether the
720           constraints are of type UniqueConstraint and initialized with the
721           special constructor  If yes Initialized the table property of this
722           UniqueConstraint object with table assosciated with the current
723           instance of ConstraintCollection class.
724
725 2004-04-07  Marek Safar  <marek.safar@seznam.cz>
726
727         * Constraint.cs: changed ClsCompliant to CLSCompliant, build fix.
728
729 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
730
731         * Constraint.cs:
732         * DataColumnCollection.cs:
733         * DataRelationCollection.cs:
734         * DataRowCollection.cs:
735         * DataTableCollection.cs:
736         * InternalDataCollectionBase.cs:
737         * Node.cs: CLS compliance for System.Data. Patch by Gert Driesen.
738         Fixes bug #56557.
739
740 2004-04-05  Jackson Harper  <jackson@ximian.com>
741
742         * DataTable.cs: Add rows to the row list if there is no filter.
743         
744 2004-03-31  Juraj Skripsky <juraj@hotfeet.ch>
745
746         * DataColumn.cs : Setting Caption to null sets it to the empty string
747         (ms.net behaviour, testcase is in DataColumnTest).
748         
749         * DataRow.cs : Evaluate DataColumn.Expression when such a column's
750         value is requested.
751
752 2004-03-30 Lluis Sanchez Gual <lluis@ximian.com>
753
754         * DataColumn.cs: In Expression setter, set the expression member even if 
755           it is an empty string.
756         * DataSet.cs: Support serialization of byte[] columns.
757         * XmlDataLoader.cs: Support deserialization  of Guid columns. 
758           Set MappingType.Attribute to columns infered from attributes.
759
760 2004-03-29  Juraj Skripsky <juraj@hotfeet.ch>
761
762         * ExpressionElements.cs : remove
763         * DataColumn.cs, DataRelationCollection.cs, DataTable.cs :
764         Integration of new Mono.Data.SqlExpressions classes used in
765         DataTable.{Select, Compute}.
766         Fixes bug #55503 and lots of failures in DataTableTest.cs.
767
768 2004-03-28  Juraj Skripsky <juraj@hotfeet.ch>
769
770         * Index.cs: Simple fix in ComparePartialRowNonUnique.
771         This fixes bugs #56129 and #56014.
772
773 2004-03-25 Lluis Sanchez Gual <lluis@ximian.com>
774
775         * DataSet.cs: In WriteXml (string filename, XmlWriteMode mode), close the
776           stream after writing the dataset. This fixes bug #52581.
777           Also added several writer.Close into finally blocks, so writers are properly
778           closed in case of an exception.
779
780 2004-03-12  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
781
782         * Constraint.cs: DO NOT USE the consts scheme if types can be referenced directly!
783         * DataColumn.cs: DO NOT USE the consts scheme if types can be referenced directly!
784         * ColumnTypeConverter.cs: Added stub
785         * DefaultValueTypeConverter: Added stub
786         * ConstraintConverter.cs: Added stub
787
788 2004-03-04 Eran Domb <erand@mainsoft.com>
789
790         * XmlDataLoader.cs : Xml reading reviewed. Added support for additional xml formats as described
791         in MS.NET documentation (missing DataSet element etc).
792
793 2004-03-04 Eran Domb <erand@mainsoft.com>
794
795         * Node.cs : Added.
796         * Index.cs : Rollback last changes.
797         
798 2004-03-03  Atsushi Enomoto <atsushi@ximian.com>
799
800         * Index.cs : justa build fix.
801
802 2004-03-03 Eran Domb <erand@mainsoft.com>
803         
804         * Index.cs : Added.
805         * Constraint.cs, ForeignKeyConstraint.cs, UniqueConstraint, ConstraintCollection.cs, DataColumn.cs,
806         DataRow.cs, DataRowCollection.cs, DataSet.cs, DataTable.cs : Changes made for using indexes on tables.
807         This changes made for performance improvement.
808
809 2004-02-08 Eran Domb <erand@mainsoft.com>
810
811         * XmlSchemaMapper.cs : Read columns is they were written as SimpleContent or as Attributes.
812
813 2004-02-08 Eran Domb <erand@mainsoft.com>
814
815         * DataSet.cs: Fix some bugs in ReadXml().
816
817 2004-02-04 Lluis Sanchez Gual <lluis@ximian.com>
818
819         * DataSet.cs: Added missing method that broke the build.
820
821 2004-02-04 Eran Domb <erand@mainsoft.com>
822
823         * DataRowCollection.cs (InsertAt): Add a check for null row. Replace check of IndexOf with RowId for
824         better performance.
825         * DataSet.cs (GetTableSchema) : Add supprot for simple content columns. Change the condition for a case
826         when all column are attributes (elements count is 0), we still want to add the relations. No relations
827         can be on simple contents.
828         (AddUniqueConstraints) Check that the column of the constraint are not hidden.
829         (AddForeignKeys) Check that the relation has constraints attach to it.
830         * XmlConstants.cs : Added constant.
831
832 2004-02-04 Eran Domb <erand@mainsoft.com>
833         
834         * DataSet.cs : GetSchemaSerializable() return null and not BuildSchema().
835         DoWriteXmlSchema calls BuildSchema ().
836
837 2004-02-04 Lluis Sanchez Gual <lluis@ximian.com>
838
839         * DataRow.cs: Added SetOriginalValue(), which is used to set the original
840           value of a column.
841         * DataRowCollection.cs: In InsertAt(), perform the correct checks and
842           attach the row.
843         * DataSet.cs: Fixed method GetChanges(): Parent rows of modified rows must
844           also be added to the dataset.
845           In WriteTable(), do not write unchanged rows when writing the original
846           version of the table.
847           Added WriteIndividualTableContent(), for writing the contents of a single
848           table.
849           Changed BuildSchema and related methods, so it can generate a schema for
850           any set of tables, not just the tables of the dataset (needed for 
851           single datatable serialization).
852         * DataTable.cs: Implemented serialization constructor and GetObjectData method.
853           Also implemented some ReadXmlSchema methods.
854         * XmlDiffLoader.cs: Read and process the xml document directly from XmlReader,
855           instead of loading the full dataset in an XmlDocument. It is faster and
856           saves memory. Also fixed several problems when generating the changes.
857         * XmlSchemaMapper.cs: Support reading schemas for single tables (used by
858           table serialization).
859
860 2004-02-02 Eran Domb <erand@mainsoft.com>
861
862         * DataSet.cs : Add indentation to the xml serialization only if we create the XmlWriter.
863         Add the namespace attribute even if namespace is an empty string for inteoperability with MS.NET.
864         * DataTable.cs (NewRow): Create only one DataRowBuilder.
865         Initiate new row with row id -1.
866         * DataRow.cs : Add RowId property.
867         * DataRowBuilder.cs : Add _rowId member.
868         * DataRowCollection.cs (Add) : Use the RowId property of the new row to check if it is already exists in the collection.
869
870 2004-01-26 Eran Domb <erand@mainsoft.com>
871
872         * XmlConstants.cs : Added some constants.
873         * DataColumn.cs : Added a method to retrive AutoIncrement value.
874         * XmlDataLoader.cs : Set the value of the foriegn key column, according to the value of the
875         parent table column.
876         * XmlDiffLoader.cs : Convert the value comming from the xml.
877         * XmlSchemaMapper.cs (Read) : Set the DataSet namespace.
878          (ReadXmlSchemaSequence) : Change the logic that decides if this element is a column or a table.
879          (ReadXmlSchemaElement) : Set the locale of the dataset.
880          (ReadColumn) : Set the column type. Find if the column is AutoIncrement.
881          (GetColumnType) : New method to get the column type from the attribute value.
882          (ReadXmlSchemaUnique) : Improve parsing of XPath. Set the constraint as a PK if needed,
883          and add the constraint to the table.
884          (ReadXmlSchemaKeyref) : Improve parsing of XPath. Create the FK constraint and add it to
885          the table.
886         * DataSet.cs : Improving writing of unique constraints, and foriegn key constraint. Givving them the correct names.
887          Writing more information to the schema for interoperability with ms.net.
888          Improve diffgarm writing mode.
889          
890
891 2004-01-21 Atsushi Enomoto <atsushi@ximian.com>
892
893         * TypedDataSetGenerator.cs : Implemented GenerateIdName().
894
895 2004-01-21 Eran Domb <erand@mainsoft.com>
896
897         * XmlDataLoader.cs (AddRowToTable) : Give thre new relation correct name.
898         Do not set the child column to be AutoIncrement.
899         Create the new column for the relation as MappingType.Hidden so they will not be serialized
900         when writing the dataset to xml.
901
902 2004-01-20 Atsushi Enomoto <atsushi@ximian.com>
903
904         * Added missing TypedDataSetGenerator.cs.
905
906 2004-01-08 Eran Domb <erand@mainsoft.com>
907
908         * XmlSchemaMapper.cs : Fix a bug. Check if table already in DataSet before adding it.
909         * DataSet.cs (ReadXml) : Fix bugs. Read correctly the xml file with XmlReadMode of DiffGram, 
910         InferSchema, ReadSchema and IgnoreSchema.
911         * XmlDataLoader.cs : All modes use the same logic.
912         * XmlDiffLoader.cs : Adding BuildXmlDocument method to the class.
913
914 2004-01-06 Eran Domb <erand@mainsoft.com>
915
916         * DataRelationCollection.cs : Use IndexOf in indexer.
917         * DataSet.cs : Adding support for WriteXml with diffgram. Code style changes.
918         * XmlDataLoader.cs : Set the DataSet.enforceConstraints to false before loading the tables.
919         * XmlDiffLoader.cs : Reading nested tables.
920         * XmlSchemaMapper.cs : Reading the relation.
921         * XmlConstants.cs : Adding some constants.
922
923 2004-01-05  Jackson Harper <jackson@ximian.com>
924
925         * DataView.cs: Set readonly property of property descriptor. This
926         fixes bug #52598.
927         
928 2004-01-01  Sanjay Gupta <gsanjay@novell.com>
929
930         * DataRelationCollection.cs : Fixed incorrect generation of default 
931           Relation name.
932         * DataSet.cs : Added missing functionality in WriteXml().
933         * XmlConstants.cs : Added new constants.
934  
935 2003-12-27  Atsushi Enomoto <atsushi@ximian.com>
936
937         * DataSet.cs : Fixed incorrect WriteXml() signature.
938
939 2003-12-18  Jackson Harper <jackson@ximian.com>
940
941         * DataView.cs: Implement AddNew, Delete, and OnListChanged.
942         
943 2003-12-17  Atsushi Enomoto <atsushi@ximian.com>
944
945         * DataSet.cs, XmlDataLoader.cs : Table name should be encoded before
946           they take shape of xml. This fixed bug #52240
947
948 2003-12-16  Tim Coleman <tim@timcoleman.com>
949         * KeyRestrictionBehavior.cs:
950                 New stubs added for .NET 1.2
951         * DataTable.cs:
952                 Changes for 1.2
953
954 2003-12-08 Eran Domb <erand@mainsoft.com>
955         * DataColumn.cs (Expression) : Validate the expression.
956         
957         * DataRelationCollection.cs (IndexOf) : Added new method sensetive to case differences in relation name.
958         (Contains, IndexOf, this[], Add) : Call new IndexOf when needed.
959         
960         * DataRow.cs (this[]) : Fix the condition for throwing RowNotInTableException.
961         (RejectChanges) : Detach row when state was Added.
962         (CollectionChanged) : Fix a bug.
963         
964         * ExpressionElement (ValidateExpression) : Fix a bug.
965         
966         * ForeignKeyConstraint.cs (AssertConstraint) : Added implementation. Check all rows from child table have
967         a parent row in the parent table.
968         (_validateColumns) : Fix bugs.
969         
970         * MergeManager.cs (AdjustSchema) : Fix a bug.
971         
972         * XmlDataLoader.cs (ReadModeInferSchema) : Change implementation. Now we can read nested xml, and we generate the relations
973         between the tables.
974
975 2003-11-30 Eran Domb <erand@mainsoft.com>
976         * DataColumnCollection.cs (this[string name]) : Use IndexOf to find the column.
977         (Add) : Find if the new column name is the same as the one found in IndexOf.
978         (IndexOf) : New method.
979         (Contains) : Use new IndexOf.
980         (IndexOf) : Use new IndexOf.
981         
982         * DataRelationCollection.cs (DataRelationCollection.AddCore) : Add The Relation to the collection.
983         (DataSetRelationCollection.AddCore) : First add the UniqueConstraint.
984         
985         * DataRow.cs (this[int columnIndex, DataRowVersion version]) : Change exceptions.
986         (Delete) : Detach row if the RowState was Added.
987         (GetChildRows) : Get the array form the ChildTable.
988         (GetParentRows) : Get the array from the ParenTable.
989         
990         * DataRowCollection.cs (Remove) : Check if row state is Detached to avoid exception.
991         
992         * DataSet.cs (IXmlSerializable.ReadXml) : Do not call MoveToContent and ReadEndElement - the XmlSerializationReader does it.
993         
994         * DataTable.cs (PrimaryKey) : Fix bugs.
995         (Compute) : First call Select. Then create ExpressionAggregate to aggregate the Select result.
996         
997         * DataTableCollection.cs (Add) : Fix a bug.
998         
999         * ExpressionElement.cs (ValidateExpression) : Turning ValidateExpression to static.
1000         (Result) : Added new interface to AggregateExpression that get DataRow[] as a param.
1001         Some code style changes (tab instead of whit spaces, alignment, etc...).
1002         
1003         * ForeignKeyConstraint.cs (_validateColumns) : Throw correct exception.
1004         
1005         * MergeManager.cs (AdjustSchema) : Fix a bug.
1006         
1007         
1008
1009 2003-11-26  Miguel de Icaza  <miguel@ximian.com>
1010
1011         * DataSet.cs: Add a few more missing methods, code style updated
1012         to Mono style.
1013
1014 2003-11-26  Tim Coleman <tim@timcoleman.com>
1015         
1016         * ConflictOptions.cs DataAdapterException.cs DataTableReader.cs
1017         * DbMetaData.cs FillOptions.cs IDataReader2.cs IDataRecord2.cs
1018         * IDataUpdatableRecord.cs IDbAsyncCommand.cs IDbAsyncConnection.cs
1019         * IDbExecutionContext.cs IGetTypedData.cs ISetTypedData.cs
1020         * LoadOption.cs OperationAbortedException.cs ResultSetOptions.cs
1021         * ResultSetSensitivity.cs StatementCompletedEventArgs.cs 
1022         * StatementCompletedEventHandler.cs UpdateOptions.cs:
1023                 New classes added for NET_2_0
1024         * DBConcurrencyException.cs DataRelation.cs DataSet.cs DataTable.cs
1025         * DataTableCollection.cs DataView.cs ForeignKeyConstraint.cs:
1026                 Modifications to add new NET_2_0 functions
1027
1028 2003-11-25  Tim Coleman <tim@timcoleman.com>
1029         * IDataSources.cs:
1030                 New 1.2 class added
1031
1032 2003-11-21  Pedro Martínez Juliá  <yoros@wanadoo.es>
1033
1034         * DataRow.cs: Detached row can be accesible (new rows from data
1035         table are detached). Closes but #51263.
1036
1037 2003-11-19  Eran Domb  <erand@mainsoft.com>
1038         * DataRow.cs : Throw exceptions if Row is Detached. 
1039         (EndEdit) : Check that we are not in middle of ChangeEvent.
1040         (AcceptChanges) : Detach the row.
1041         
1042         * DataRelation.cs : throw correct exception.
1043         *UniqueConstraint.cs : throw correct exception.
1044         
1045
1046 2003-11-09  Pedro Martínez Juliá  <yoros@wanadoo.es>
1047
1048         * DataRow.cs: Use RemoveInternal instead of Remove because the last
1049         one uses Delete and AcceptChanges.
1050
1051         * DataRowCollection.cs: When removing, Delete and AcceptChanges
1052         method from the row are called. Added an internal method that will
1053         be used by DataRow to "physically" remove the row from the list.
1054
1055 2003-11-09  Pedro Martínez Juliá  <yoros@wanadoo.es>
1056
1057         * DataRowCollection.cs: To follow the specification: Remove and
1058         RemoveAt should remove the row. But needed to call DeletingDataRow
1059         to prepare the deleting.
1060
1061         * DataRow.cs: Don't call DeletingDataRow when it is called by the
1062         method Table.Rows.Remove.
1063
1064 2003-11-09  Pedro Martínez Juliá  <yoros@wanadoo.es>
1065
1066         * DataRowCollection.cs: Make the row be deleted by itself. If not,
1067         it fails because we need to call OnRowDeleting and OnRowDeleted. It
1068         is full implemented inside DataRow.
1069
1070 2003-11-05  Eran Domb  <erand@mainsoft.com>
1071         * DataView.cs (ctor) : Changing default RowStateFilter to CurrentRow.
1072
1073 2003-11-04  Eran Domb  <erand@mainsoft.com>
1074         * DataRow.cs (CheckChildRows) : Improving the implementation - checking child for all FK, and not
1075         on all Relations.
1076         (GetChildRows) : Adding some checks.
1077         (GetParentRows) : Adding some checks. Fix a bug in implementation.
1078         (SetParentRow) : Added implementation.
1079         
1080         * DataRowCollection.cs (Add) : Added more checks on the row added to the collection.
1081         * DataTable.cs (Copy) : Set the During Loading flag to save unnecessary assertions.
1082         * ForeignKeyConstraint.cs (AssertConstraint) : Fixing bugs in implementation. Checking for DBNull values in the row.
1083         * MergeManager.cs : Check that the target table is not null.
1084
1085 2003-10-27  Eran Domb  <erand@mainsoft.com>
1086         * DataColumn.cs (DefaultValue) : Changing null value to DBNull. Checking that the type of the new default value 
1087         can be converted to the column type.
1088         
1089         * DataRelationCollection.cs (AddCore) : Give the new FK the name of the relation.
1090         
1091         * DataRow.cs (EndEdit) : Check if we need to validate the constraints.
1092         (GetParentRows, GetChildRows) : Checking that the row has the wanted version, before accessing the row's value.
1093         
1094         * DataRowCollection.cs (Add) : Fixing a bug. 
1095         (Clear) : Before clearing the array check that there is no violation of FK constraint.
1096         
1097         * DataSet.cs (Prefix) : If value is null chage it to empty string.
1098         (GetXml) : Removing the Processing Instructions from the xml string as in MS ADO.NET.
1099         
1100         * ExpressionElement : Adding support for IN expresion.
1101         
1102         * DataTable (CopyConstraints) : New method that copy the tables constraints to the copy table.
1103         (Select) : Adding support for DataViewwRowState.
1104         
1105         * ForeignKeyConstraint.cs (AssertConstraint) : Adding implementation.
1106         
1107         * MergeManager.cs (MergeRow) : Fix bugs.
1108         
1109 2003-10-27  Eran Domb  <erand@mainsoft.com>
1110         * DataRow.cs (SetColumnValue): Donot check null value when in midle of loading data.
1111         check null values when ending loading data.
1112         
1113         * DataSet.cs (RejectChanges) : Imlementation.
1114         (Prefix) : If prefix was changed fire event. Check that the prefix is not null - if null, 
1115         change it to empty string.
1116         
1117         * DataTable.cs (BeginLoadData, EndLoadData) : Impemantation.
1118         
1119 2003-10-22  Eran Domb  <erand@mainsoft.com>
1120         * MergeManager.cs : Fixing bugs. Adding check for PrimaryKey matching.
1121         
1122         * ConstraintCollection.cs (RamoveAt): Change implemntation.
1123         
1124         * DataTableCollection (CanRemove): Removing cast to Constraint.
1125
1126 2003-10-22  Eran Domb  <erand@mainsoft.com>
1127         * DataRelationCollection.cs (AddCore): The unique constraint was added even if the createConstraints flag was false.
1128         (Clear): The collection was cleared without removing the relation from the parent and child tables.
1129         
1130         * DataSet.cs (Copy, Clone): The Relations of the DataSet were not copy.
1131         (HasChanges, Reset): Imlementation.
1132         
1133         * DataTable.cs (HasErrors): There is no flag for errors, instead the table ask her row if they have any errors.\r
1134         This is because the we do not no when to turn off the flag.
1135         (Locale): Changing implementation to behave like ADO.NET.
1136         (AcceptChanges): Fix bug.
1137         (Clear): Check that this table is not referenced from a foreign key constraint.
1138         (Copy): Do not try to access a deleted row.
1139         (CopyProperties): Copy the PrimaryKey.
1140         (GetChanges, ImportRow): Implementation.
1141         (LoadDataRow): Adding implementation if the table has PrimaryKey.
1142         (ToString): Changing implementation to behave like ADO.NET.
1143         
1144         * UniqueConstraint.cs (AssertConstraint): support for Multiple DataColumns in the constraint.
1145         
1146         * DataRow.cs (Ctor): In the constructor we initiate the current array, but we should initiate only the proposed array for new rows.
1147         (HasErrors): Implementation.
1148         (Delete): Added checking for child rows of the deleted row.
1149         (EndEdit): Added checking for child row and firing events.
1150         (GetColumnError): Added a check that the method will not return null, as in ADO.NET(an empty string is returned).
1151         (GetColumnsInError): Added a check for null values in column error.
1152         (HasVersion): Added special treatment for special RowState.
1153         (CollectionChanged): More checks to avoid NullReferenceException.
1154         
1155         * DataRowCollection.cs (Remove): Fix a bug.\r
1156
1157
1158 2003-10-01  Duncan Mak  <duncan@ximian.com>
1159
1160         More patches from Eran Domb <erand@mainsoft.com>.
1161
1162         * MergeManager.cs: New file.
1163
1164         * DataRelationCollection.cs (AddCore): Check that a
1165         UniqueConstraint is already exists. It loops over the Relations
1166         instead of the Constraints.
1167         (Add, AddCore): The relation was added twice.
1168
1169         * DataSet.cs (Merge, GetChanges, HasChanges): Implemented.      
1170
1171 2003-09-30  Duncan Mak  <duncan@ximian.com>        
1172
1173         Patches from Eran Domb <erand@mainsoft.com>.
1174
1175         * DataRelation.cs (constructor): When the name of the relation is
1176         null, it should return an empty, not "Relation".
1177         
1178         * DataRow.cs (AcceptChanges): Added special case for
1179         RowState.Detached.
1180         (CancelEdit): Set editing flag to false.
1181         (IsNull): Check that the value is DBNull.
1182
1183         * DataRowCollection.cs (Add): There was no check that the table of
1184         the collection is owned by a DataSet.
1185
1186         * DataSet.cs (OnMergeFailed): Added.    
1187
1188         * UniqueConstraint.cs (AssertConstraint): There was no check that
1189         values in the row are not null, where it is a primary key
1190         column. Also check that the row has a proposed version, if not,
1191         get the current version when we compare the rows.
1192
1193 2003-09-25  Duncan Mak  <duncan@ximian.com>
1194
1195         Patches from Eran Domb <erand@mainsoft.com>.
1196
1197         * DataColumn.cs (Unique): Implemented.
1198         
1199         * DataTable.cs:
1200         * ConstraintCollection.cs:
1201         * ForeignKeyConstraint.cs (_ensureUniqueConstraintExists): Fixes
1202         an Exception thrown. Details:
1203         http://lists.ximian.com/archives/public/mono-devel-list/2003-September/002130.html
1204         
1205         * DataRowCollection.cs (Add): There is no checking that there is
1206         no violation of the unique constrains.
1207
1208         * UniqueConstraint.cs (AssertConstraint): There is no checking on
1209         all columns in the constraint.
1210
1211         * DataTableCollection (Add): Correctly throw an Exception, more
1212         details here:
1213         http://lists.ximian.com/archives/public/mono-devel-list/2003-September/002117.html
1214         (Remove, RemoveAt): Implemented.
1215
1216 2003-07-31  Duncan Mak  <duncan@ximian.com>
1217
1218         * DBConcurrencyException.cs: Added new NET_1_1 no-param constructor.
1219
1220 2003-07-25  Ravi Pratap  <ravi@ximian.com>
1221
1222         * DataRelation.cs (OnPropertyChanging): Calling the 'Invoke'
1223         method on a delegate is disallowed - fix this.
1224
1225 2003-07-22  Lluis Sanchez Gual  <lluis@ximian.com>
1226
1227         * DataSet.cs: Implemented IXmlSerializable interface. Added basic support for
1228           xml serialization. Modified method of writing schema. Now it creates
1229           a XmlSchema object and serializes it using XmlSerializer.
1230         * XmlConstants.cs: Added constants for data type names.
1231         * XmlDataLoader.cs: Fixed deserialization of data. Now converts data to the
1232           type specified in the column.
1233
1234 2003-04-20  Alan Tam <Tam@SiuLung.com>
1235
1236         * DataRelationCollection.cs: Fix a bug that prevent relations
1237         from being added via DataSet.
1238
1239 2003-04-12  Ville Palo <vi64pa@kolumbus.fi>
1240
1241         * UniqueConstraint.cs: one tiny fix.
1242         
1243 2003-04-05  Ville Palo <vi64pa@kolumbus.fi>
1244
1245         * DataTable.cs: Remove UniqueConstraints when adding new ones
1246         
1247 2003-04-04  Ville Palo <vi64pa@kolumbus.fi>
1248
1249         * DataColumnCollection.cs: Little 'case sensitive' fix
1250         
1251 2003-04-04  Ville Palo <vi64pa@kolumbus.fi>
1252
1253         * DataRow.cs: AutoIncrement handling to Constructor
1254         * DataRowCollection.cs: This doesnt need anymore AutoIncrements
1255         
1256 2003-03-27  Ville Palo <vi64pa@kolumbus.fi>
1257
1258         * DataTable.cs: Some fixes to PrimaryKey etc...
1259         * UniqueConstraint.cs: Little clean up
1260         
1261 2003-03-27  Ville Palo <vi64pa@kolumbus.fi>
1262
1263         * DataTable.cs: Tiny fix to ToString () -method
1264         
1265 2003-03-27  Ville Palo <vi64pa@kolumbus.fi>
1266
1267         * ConstraintCollection.cs: Little fix.
1268         * DataColumn.cs: Added new internal method SetUnique()
1269         * UniqueConstraint.cs: some little fixes
1270         
1271 2003-03-26  Ville Palo <vi64pa@kolumbus.fi>
1272
1273         * DataRowCollection.cs: Bugfixes, implementation,...
1274         
1275 2003-03-26  Ville Palo <vi64pa@kolumbus.fi>
1276
1277         * DataColumn.cs: If DataType if set to something else than short, int
1278         or long and AutoIncrement is true, AutoIncrement is must set to false.
1279         
1280 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1281
1282         * DataRow.cs:
1283         (BeginEdit): fixed array bound problem when a column has been added.
1284         (EndEdit): just assign proposed to current as proposed is set to null.
1285         This also fixes another array boudn problem.
1286
1287 2003-03-21  Alan Tam <Tam@SiuLung.com>
1288
1289         * DataRow.cs: Fixed problems in accessers, BeginEdit, CancelEdit,
1290         EndEdit and AcceptChanges to act correctly according to DataRowState
1291         and DataRowVersion.
1292         * DataRowCollection.cs: Call AttachRow and DetachRow when a row is
1293         attached and detached from the collection.
1294
1295 2003-03-20  Alan Tam <Tam@SiuLung.com>
1296
1297         * DataColumn.cs: Store empty string for Expression when null is passed in.
1298         Classes generated by XSD.exe passes null by default.
1299
1300 2003-03-16  Ville Palo <vi64pa@kolumbus.fi>
1301
1302         * DataColumnCollection.cs: Tiny clean up
1303
1304 2003-03-16  Ville Palo <vi64pa@kolumbus.fi>
1305
1306         * DataColumn.cs: little fixes.
1307         * DataColumnCollection.cs: Lots of little fixes and improvments.
1308         
1309 2003-03-12  Alan Tam <Tam@SiuLung.com>
1310
1311         * DataSet.cs: Fixed a bug that the file written does not close correctly.
1312
1313 2003-03-08  Alan Tam <Tam@SiuLung.com>
1314
1315         * DataRelationCollection.cs: Removed the mis-overridden methods
1316         * DataRow.cs: Fixed an attribute
1317         * DataSet.cs: Fixed the modifiers
1318
1319 2003-03-06  Aleksey Demakov <avd@openlinksw.com>
1320
1321         * DataTableCollection.cs: The Contains (string name),
1322         IndexOf (string name) methods, and item[string name] indexer
1323         now behave more like .NET with respect to case-sensitivity.
1324         That is if there is an exactly matching item then this one is used.
1325         If there is only one item differing in case then it used.
1326         If there are more than one item differing in case then
1327         Contains returns false, IndexOf returns -1, and item[]
1328         throws an ArgumentException.
1329
1330 2003-02-28  Ville Palo <vi64pa@kolumbus.fi>
1331
1332         * ExpressionElement.cs: More implementation. 
1333         
1334 2003-02-28  Alan Tam <Tam@SiuLung.com>
1335         * DataSet.cs: Changed WriteTable so that it now calls the newly written
1336         WriteObjectXml to direct the call to the respective XmlConvert method.
1337         This fixes the wrong format written to XML files of bool, float,
1338         double, DateTime and TimeSpan types.
1339
1340 2003-02-25  Alan Tam <Tam@SiuLung.com>
1341
1342         * DataRelation.cs: Added SetDataSet for DataSetRelationCollection to use.
1343         * DataRelationCollection.cs: Implemented AddRange and Contains.
1344         Implemented AddRange, Clear, List and RemoveCore for DataSetRelationColletion.
1345         Implemented AddCore, List and RemoveCore for DataTableRelationCollection.
1346         Reimplemented most Add methods to eliminate duplicated checks.
1347         Centralized RelationName generation procedure in GetNextDefaultRelationName.
1348
1349 2003-02-25  Alan Tam <Tam@SiuLung.com>
1350
1351         * DataColumn.cs: Fixed wrong storage representation of Expression
1352         (using empty string instead of null) so that ToString() returns nothing.
1353         * DataColumnCollection.cs: Reimplemented GetNextDefaultColumnName so that
1354         auto column naming now works as expected. Reimplemented some Add methods
1355         to eliminate code duplication.
1356
1357 2003-02-19  Ville Palo <vi64pa@kolumbus.fi>
1358
1359         * DataTable.cs: DataTable.CaseSensitive follows parent 
1360         DataSet.CaseSensitive property if DataTable.CaseSensitive has never
1361         been changed directly from DataTable
1362         
1363 2003-02-19  Ville Palo <vi64pa@kolumbus.fi>
1364
1365         * DataSet.cs: When CaseSensitive property is changed all of the Tables
1366         of DataSet have to change too
1367         
1368 2003-02-19  Daniel Morgan <danmorg@sc.rr.com>
1369
1370         * InternalDataCollectionBase.cs: revert change to field
1371         to fix build
1372         
1373         * DataViewManager.cs
1374         * DataView.cs
1375         * DataTable.cs
1376         * DataSet.cs: commented use of DesignerAttribute
1377         because it broke the build.  According to MSDN,
1378         DesignerAttribute does not have a zero-argument constructor
1379
1380 2003-02-18  Ville Palo <vi64pa@kolumbus.fi>
1381
1382         * DataColumnCollectin.cs: Little fix for indexer and case sensitivity
1383         
1384 2003-02-18  Alan Tam <Tam@SiuLung.com>
1385
1386         * DataRow.cs: Implemented GetParentRow and GetParentRows.
1387         * DataSet.cs: Added stub for HasChanges, InferXmlSchema,
1388                       OnPropertyChanging, OnRemoveRelation, OnRemoveTable,
1389                       RaisePropertyChanging.
1390         * DataTable.cs: Implemented NewRowArray.
1391         * DataTablePropertyDescriptor: Fixed a modifier.
1392         * InternalDataCollectionBase.cs: Fixed modifiers. Implemented SyncRoot.
1393         * PropertyCollection.cs: Minor fix.
1394         * ConstraintCollection.cs DataColumn.cs DataColumnCollection.cs 
1395         * DataRelation.cs DataRelationCollection.cs DataRow.cs
1396         * DataRowCollection.cs DataRowState.cs DataSet.cs DataTable.cs
1397         * DataTableCollection.cs DataTablePropertyDescriptor.cs DataView.cs
1398         * DataViewManager.cs DataViewRowState.cs DataViewSettingCollection.cs
1399         * ForeignKeyConstraint.cs InternalDataCollectionBase.cs
1400         * PropertyCollection.cs UniqueConstraint.cs: Added missing attributes
1401         
1402 2003-02-08  Ville Palo <vi64pa@koti.soon.fi>
1403
1404         * ExpressionElement.cs: More implementation
1405         
1406 2003-02-05  Alan Tam <Tam@SiuLung.com>
1407
1408         * DataSet.cs: Added framework for DataSet.Update Implemented missing 
1409         methods GetSchemaSerializable, GetSerializationData, 
1410         ReadXmlSerializable, ShouldSerializeRelations and ShouldSerializeTables
1411         for DataSet
1412         * DataTable.cs: Implemented missing methods CreateInstance and 
1413         GetRowType for DataTable
1414         
1415 2003-02-03  Ville Palo <vi64pa@koti.soon.fi>
1416
1417         * DataSet.cs: Implemented private method MapType for 
1418         mapping datatypes for XmlSchema
1419         
1420 2003-02-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1421
1422         * DataView.cs: implemented Dispose.
1423
1424 2003-01-30  Ville Palo <vi64pa@koti.soon.fi>
1425
1426         * ExpressionElement.cs: Added new file. This file is for parsing
1427           and DataData.Select () -methods and DataColumn.Expression -property
1428         * DataTable.cs: Implemented Select(string) -method      
1429         
1430 2003-01-28  Ville Palo <vi64pa@koti.soon.fi>
1431
1432         * DataSet.cs: One little fix to writing xml
1433         
1434 2003-01-27  Ville Palo <vi64pa@koti.soon.fi>
1435
1436         * XmlSchemaMapper.cs: Some fixes.
1437         * DatSet.cs: Some XmlFixes and BeginInit ()/ EndInit () -fix
1438
1439                 
1440 2003-01-24  Ville Palo <vi64pa@koti.soon.fi>
1441
1442         * UniqueConstraint.cs: Do not set columns Unique property true 
1443         as a default.
1444         * ForeignKeyConstraint.cs: Add UniqueConstraint to parent Table
1445         
1446 2003-01-18  Ville Palo <vi64pa@koti.soon.fi>
1447
1448         * DataTableCollection.cs: Now names new DataTable if it doesn't 
1449         already have a name.
1450         
1451 2003-01-17  Ville Palo <vi64pa@koti.soon.fi>
1452
1453         * XmlSchemaMapper.cs: Improvments.
1454         * XmlConstaints.cs: Added more constants.
1455         * DataSet.cs: Improvments of reading and writing xml
1456         * DataColumn.cs: Added default values of properties.
1457                 
1458 2003-01-14  Ville Palo <vi64pa@koti.soon.fi>
1459
1460         * XmlSchemaMapper.cs: Some improvments
1461         
1462 2003-01-13  Ville Palo <vi64pa@koti.soon.fi>
1463
1464         * DataRowCollection.cs: Added IndexOutOfRangeException
1465         * DataTableCollection.cs: Added OnCollectionChanging and 
1466         OnCollectionChanged events.
1467         * DataSet.cs: Many fixes. Implemented Clone () and Copy () -methods
1468         * DataTable.cs: Implemented Copy () and Clone () methods.
1469         * XmlDataLoader.cs: some fixes.
1470         * XmlSchemaMapper.cs: comments.
1471         
1472 2003-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1473
1474         * DataColumnPropertyDescriptor.cs: store columnIndex in the .ctor.
1475
1476 2003-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1477
1478         * DataColumnPropertyDescriptor.cs: fixed typo.
1479         * DataViewManagerListItemTypeDescriptor.cs: added new internal property
1480         to get the DataViewManager and removed TablePD class.
1481         * DataTablePropertyDescriptor.cs: TablePD class is now this one as
1482         suggested by danmorg.
1483
1484 2003-01-06  Ville Palo <vi64pa@koti.soon.fi>
1485
1486         * XmlDataLoader.cs: Moved diffgram stuff to new internal class
1487         XmlDiffLoader.
1488         * XmlDiffLoader.cs: new class for diffgrams. Added handling of 
1489         diffgr:Errors and some fixes and changed XmlReader to XPathNavigator.
1490         
1491 2003-01-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1492
1493         * DataView.cs: made dataViewManager internal.
1494         * DataViewManager.cs: use ICustomTypeDescriptor. We don't want the
1495         properties of the object, but the values of the columns present in a
1496         row.
1497         
1498         * DataViewManagerListItemTypeDescriptor.cs: implemented GetProperties,
1499         which returns a PropertyDescriptorCollection. Created a new class
1500         derived from PropertyDescriptor that treats Table as an object whose
1501         properties are DataRowView.
1502
1503 2003-01-04  Ville Palo <vi64pa@koti.soon.fi>
1504
1505         * XmlSchemaMapper.cs: Added handling for Constraints, Attributes.
1506         
1507 2003-01-04  Ville Palo <vi64pa@koti.soon.fi>
1508
1509         * DataColumn.cs: ExtendedProperties is by default !null-
1510         
1511 2003-01-04  Ville Palo <vi64pa@koti.soon.fi>
1512
1513         * DataColumnCollection.cs: Add (DataColumn Column) -method didn't 
1514         set column's ordinal.
1515         
1516 2003-01-02  Ville Palo <vi64pa@koti.soon.fi>
1517
1518         * DataSet.cs: 
1519         * XmlDataLoader.cs: XmlReader closing fixes.
1520         * XmlSchemaReader.cs: Added support for ref=
1521         
1522 2003-01-01  Ville Palo <vi64pa@koti.soon.fi>
1523
1524         * DataSet.cs: 
1525           - Added XmlReader and XmlWriter Closing.
1526           - Moved ReadXmlSchema stuff to new internal class XmlSchemaMapper.
1527         * XmlSchemaMapper.cs
1528           - Much better way IMHO  to map xmlschema than the old one in 
1529             DataSet.cs. Its, more flexible, cleaner, ...
1530                         
1531 2002-12-29  Ville Palo <vi64pa@koti.soon.fi>
1532
1533         * XmlDataLoader.cs: Reading diffgrams.
1534         
1535 2002-12-29  Ville Palo <vi64pa@koti.soon.fi>
1536
1537         * DataRow.cs: Little fix to indexer and DataColumnCang* trigger fixes.
1538         * DataTable.cs: Added ChanginDataColumn () for triggering 
1539         DataColumnChanging event
1540         
1541 2002-12-28  Ville Palo <vi64pa@koti.soon.fi>
1542
1543         * DataSet.cs: Indentations to WriteXmlSchema () and one little fix
1544         
1545 2002-12-28  Ville Palo <vi64pa@koti.soon.fi>
1546
1547         * DataSet.cs: Indentations to WriteXml ()
1548         
1549 2002-12-27  Ville Palo <vi64pa@koti.soon.fi>
1550
1551         * DataSet.cs:
1552         * XmlDataLoader.cs: Moved ReadXml -stuff from DataSet.cs to new
1553         class XmlDataLoader.cs
1554         
1555 2002-12-19  Ville Palo <vi64pa@koti.soon.fi>
1556
1557         * DataSet.cs Implemented ReadXml with XmlReadMode.ReadSchema
1558         
1559 2002-12-18  Ville Palo <vi64pa@koti.soon.fi>
1560
1561         * DataSet.cs: Started to implement ReadXml-methods.
1562         
1563 2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1564
1565         * DataSet.cs: implemented DefaultViewManager and GetList.
1566
1567         * DataViewManager.cs: a bit of work on IList and ITypedList needed by
1568         DataList in System.Web.
1569
1570         * DataViewManagerListItemTypeDescriptor.cs: custom type descriptor for
1571         DataViewManager.
1572
1573 2002-12-16  Ville Palo <vi64pa@koti.soon.fi>
1574
1575         * DataRow.cs
1576         * DataTable.cs: Fixed NullException (rollback -event)
1577         * DataSet.cs: WriteXml -method does not anymore write <?xml... row.
1578         
1579 2002-12-15  Ville Palo <vi64pa@koti.soon.fi>
1580
1581         * DataRow.cs:
1582         * DataRowCollection.cs: Moved event triggering from DataRow to
1583         DataRowCollection.
1584         
1585 2002-12-09  Ville Palo <vi64pa@koti.soon.fi>
1586
1587         * DataSet.cs: Little fix to WriteTable () -method 
1588         and DoReadXmlSchema () -method.
1589         
1590 2002-12-06  Ville Palo <vi64pa@koti.soon.fi>
1591
1592         * DataSet.cs: Clean up to reading xmlschema. This looks much better 
1593         now (work better too), but it not working correctly yet.
1594         
1595 2002-12-04  Ville Palo <vi64pa@koti.soon.fi>
1596
1597         * DataRow.cs: 
1598         * DataRowCollection.cs: Added some event handlins stuff.
1599         * DataSet.cs: Some fixes.
1600         * DataTable.cs: Added event handlers.
1601         
1602 2002-11-30  Ville Palo <vi64pa@koti.soon.fi>
1603
1604         * DataRowChangeEventArgs.cs: Implemented Action and Row properties 
1605         
1606 2002-11-30  Ville Palo <vi64pa@koti.soon.fi>
1607
1608         * System.Data/DataRow.cs: Added internal property XmlDataID
1609         
1610 2002-11-29  Ville Palo <vi64pa@koti.soon.fi>
1611
1612         * DataSystem.Data.DataTableCollection.cs:
1613         Removed HashTable. There could be situations where DataTable
1614         is added to collection before it hava TableName. So using 
1615         HashTable is impossible.
1616         
1617 2002-11-19  Carlos Guzmán Álvarez <carlosga@telefonica.net>
1618
1619         * DataRow.cs: an object that is equal to null 
1620         should be allowed to be set in this indexer too
1621         to be like .NET
1622
1623 2002-11-06  Daniel Morgan <danmorg@sc.rr.com>
1624
1625         * DataColumnPropertyDescriptor.cs: added file
1626         
1627         * System.Data/DataRowView.cs: started implementation
1628         
1629         * DataTable.cs: stubbed more interfaces.  Implemented
1630         IListSource.GetList()
1631         
1632         * DataView.cs: stubbed more interfaces.  Implemented
1633         some properties and methods: GetEnumerator(), 
1634         ITypedList.GetItemProperties, Item indexer, CopyTo()
1635
1636 2002-05-18  Nick Drochak  <ndrochak@gol.com>
1637
1638         * DataRow.cs: Fix typo.