2002-04-23 Rodrigo Moya <rodrigo@ximian.com>
authorRodrigo Moya <rodrigo@mono-cvs.ximian.com>
Tue, 23 Apr 2002 18:43:30 +0000 (18:43 -0000)
committerRodrigo Moya <rodrigo@mono-cvs.ximian.com>
Tue, 23 Apr 2002 18:43:30 +0000 (18:43 -0000)
* System.Data.Common/DataAdapter.cs:
* System.Data.Common/DataColumnMappingCollection.cs:
* System.Data.Common/DataTableMappingCollection.cs:
* System.Data.Common/DbDataPermission.cs:
* System.Data.Common/DbDataPermissionAttribute.cs: some
compilation errors fixed.

svn path=/trunk/mcs/; revision=3997

mcs/class/System.Data/ChangeLog
mcs/class/System.Data/System.Data.Common/DataAdapter.cs
mcs/class/System.Data/System.Data.Common/DataColumnMappingCollection.cs
mcs/class/System.Data/System.Data.Common/DataTableMappingCollection.cs
mcs/class/System.Data/System.Data.Common/DbDataPermission.cs
mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs
mcs/class/System.Data/System.Data/DataTable.cs

index 4b130a18e34782b4b75cb48a03ea2b0bd863a4b3..d68222fe7cbe466c2832ae39753b220d698a6907 100644 (file)
@@ -1,3 +1,12 @@
+2002-04-23  Rodrigo Moya <rodrigo@ximian.com>
+
+       * System.Data.Common/DataAdapter.cs:
+       * System.Data.Common/DataColumnMappingCollection.cs:
+       * System.Data.Common/DataTableMappingCollection.cs:
+       * System.Data.Common/DbDataPermission.cs:
+       * System.Data.Common/DbDataPermissionAttribute.cs: some
+       compilation errors fixed.
+
 2002-04-23  Daniel Morgan <danmorg@sc.rr.com>
 
        * TODO: modified - added classes TODO, and
index 27be1f7de41f9d72c80cff3ae716cebc7af98431..dc8a41776fe1d68dc379b2fc3abb4142d9b2b094 100644 (file)
@@ -7,6 +7,7 @@
 // (C) Ximian, Inc
 //
 
+using System.ComponentModel;
 using System.Data;
 
 namespace System.Data.Common
index c4f14961ab1b90ca73b174284c1e0795b8904dcf..b6f2bb5a1cca9dfd3e0d1d2ed4614dd6aefe4806 100644 (file)
@@ -8,6 +8,7 @@
 //
 
 using System;
+using System.Collections;
 using System.Data;
 
 namespace System.Data.Common
index 96ad0c884bcb6c62484dcadda75f765f8f479bb8..5a51cd6dc7b3e986df3447daf63e344972fc48c3 100644 (file)
@@ -7,6 +7,9 @@
 // (C) Ximian, Inc
 //
 
+using System;
+using System.Collections;
+
 namespace System.Data.Common
 {
        /// <summary>
@@ -42,12 +45,12 @@ namespace System.Data.Common
                }
 
                [MonoTODO]
-               public bool Contains(object) {
+               public bool Contains (object obj) {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public bool Contains(string) {
+               public bool Contains (string str) {
                        throw new NotImplementedException ();
                }
 
@@ -71,37 +74,37 @@ namespace System.Data.Common
                }
 
                [MonoTODO]
-               public int IndexOf(object) {
+               public int IndexOf (object obj) {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public int IndexOf(string) {
+               public int IndexOf (string str) {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public int IndexOfDataSetTable(string dataSetTable) {
+               public int IndexOfDataSetTable (string dataSetTable) {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public void Insert(int index, object value) {
+               public void Insert (int index, object value) {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public void Remove(object value) {
+               public void Remove (object value) {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public void RemoveAt(int index) {
+               public void RemoveAt (int index) {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public void RemoveAt(string index) {
+               public void RemoveAt (string index) {
                        throw new NotImplementedException ();
                }
                
@@ -111,13 +114,13 @@ namespace System.Data.Common
                }
 
                [MonoTODO]
-               public DataTableMapping this[int] {
+               public DataTableMapping this[int i] {
                        get { throw new NotImplementedException (); }
                        set { throw new NotImplementedException (); }
                }
 
                [MonoTODO]
-               public DataTableMapping this[string] {
+               public DataTableMapping this[string s] {
                        get { throw new NotImplementedException (); }
                        set { throw new NotImplementedException (); }
                }
index f14770453d7198335732580347a9b2dd43568a18..f2e9de2d78ce88a681b9a80a0c45197c37efe088 100644 (file)
@@ -7,6 +7,7 @@
 // (C) Ximian, Inc
 //
 
+using System.Security;
 using System.Security.Permissions;
 
 namespace System.Data.Common
index 1a7d682165e78e66051421e045fb05422a12ad60..842ea6570b1a6000ef761ee95d7791b1764268fd 100644 (file)
@@ -7,6 +7,8 @@
 // (C) Ximian, Inc
 //
 
+using System.Security.Permissions;
+
 namespace System.Data.Common
 {
        /// <summary>
index 99380218c1b3469d40c6a24b80d6039c4821e29a..84fc089f2e8dd62287d50e87d3f11c8097fba5a3 100644 (file)
@@ -115,12 +115,6 @@ namespace System.Data
                        //zeroColumns[]
                        //primaryIndex[]
                        //delayedSetPrimaryKey = null; //??
-
-
-
-
-
-
                }
 
                /// <summary>