Переглянути джерело

* OdbcType.cs: fixed typo UniqueIndetifier
* OdbcColumn.cs : fixed typo UniqueIndetifier

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

Gert Driesen 21 роки тому
батько
коміт
bdfd6d7584

+ 5 - 1
mcs/class/System.Data/System.Data.Odbc/ChangeLog

@@ -1,5 +1,9 @@
 2004-05-09  Gert Driesen ([email protected])
-	* OdbcType.cs : fixed linefeeds to DOS to match other sources
+	* OdbcType.cs: fixed typo UniqueIndetifier
+	* OdbcColumn.cs : fixed typo UniqueIndetifier
+
+2004-05-09  Gert Driesen ([email protected])
+	* OdbcType.cs: fixed linefeeds to DOS to match other sources
 	in System.Data.Odbc
 
 2003-12-01  Gonzalo Paniagua Javier <[email protected]>

+ 1 - 1
mcs/class/System.Data/System.Data.Odbc/OdbcColumn.cs

@@ -65,7 +65,7 @@ namespace System.Data.Odbc
 						return typeof(float);
 					case OdbcType.SmallInt:
 						return typeof(System.Int16);
-					case OdbcType.UniqueIndetifier:
+					case OdbcType.UniqueIdentifier:
 						return typeof(Guid);
 				}
 				throw new InvalidCastException();

+ 1 - 1
mcs/class/System.Data/System.Data.Odbc/OdbcType.cs

@@ -51,7 +51,7 @@ namespace System.Data.Odbc
 		Text=-1,		// SQL_LONGVARCHAR
 		Timestamp=93,	// SQL_TYPE_TIMESTAMP
 		TinyInt=-6,		// SQL_TINYINT
-		UniqueIndetifier=-11,  // SQL_GUID
+		UniqueIdentifier=-11,  // SQL_GUID
 		VarBinary=-3,	// SQL_VARBINARY
 		VarChar=12		// SQL_VARCHAR
 	}