2003-12-28 Tim Coleman <tim@timcoleman.com>
authorTim Coleman <tim@mono-cvs.ximian.com>
Sun, 28 Dec 2003 21:24:16 +0000 (21:24 -0000)
committerTim Coleman <tim@mono-cvs.ximian.com>
Sun, 28 Dec 2003 21:24:16 +0000 (21:24 -0000)
        * DbParameterBase.cs:
                Correct type of ValueSize method to int

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

mcs/class/System.Data/System.Data.ProviderBase/ChangeLog
mcs/class/System.Data/System.Data.ProviderBase/DbParameterBase.cs

index 7c6b5ca12da850f58ebeff88ee52e5d961e6c57e..fc65d1a1f6b51050c2c802f09892d5ff474af1fc 100755 (executable)
@@ -1,3 +1,7 @@
+2003-12-28  Tim Coleman <tim@timcoleman.com>
+       * DbParameterBase.cs:
+               Correct type of ValueSize method to int
+
 2003-12-23  Tim Coleman <tim@timcoleman.com>
        * DbCommandBase.cs DbConnectionBase.cs DbConnectionFactory.cs
        * DbParameterCollectionBase.cs:
index 9caa5d39dfed89368786b01d92d933d0e2085b40..4ab02cd63312ed420577f6bf0df0fa611e974044 100644 (file)
@@ -166,7 +166,7 @@ namespace System.Data.ProviderBase {
                }
 
                [MonoTODO]
-               protected virtual byte ValueSize (object value)
+               protected virtual int ValueSize (object value)
                {
                        throw new NotImplementedException ();
                }