* System.Data.Odbc/OdbcColumn.cs : Changed the mapping of OdbcType.Char to string instead of char. Fixes bug #67269 svn path=/trunk/mcs/; revision=51707
@@ -1,3 +1,8 @@
+2005-10-14 Senganal T <[email protected]>
+
+ * OdbcColumn.cs : Changed the mapping of OdbcType.Char to string
+ instead of char. Fixes bug #67269
2005-10-14 Senganal T <[email protected]>
* OdbcDataReader.cs: Added Text and NText datatypes to the list
@@ -79,7 +79,7 @@ namespace System.Data.Odbc
return typeof(bool);
case OdbcType.NChar:
case OdbcType.Char:
- return typeof(char);
+ return typeof(string);
case OdbcType.Time:
case OdbcType.Timestamp:
case OdbcType.DateTime: