Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Coleman <tim@mono-cvs.ximian.com>2003-12-29 00:24:16 +0300
committerTim Coleman <tim@mono-cvs.ximian.com>2003-12-29 00:24:16 +0300
commitd4bae83c5ea7dd83fd3d0d1a0ab8309ce78c52bd (patch)
tree46a37135345ee32d9d69ef8f7c0f01f150fcaa91 /mcs/class/System.Data/System.Data.ProviderBase
parentcce39455937c3efdebf0cc7b0ef99c3513b7f422 (diff)
2003-12-28 Tim Coleman <tim@timcoleman.com>
* DbParameterBase.cs: Correct type of ValueSize method to int svn path=/trunk/mcs/; revision=21519
Diffstat (limited to 'mcs/class/System.Data/System.Data.ProviderBase')
-rwxr-xr-xmcs/class/System.Data/System.Data.ProviderBase/ChangeLog4
-rw-r--r--mcs/class/System.Data/System.Data.ProviderBase/DbParameterBase.cs2
2 files changed, 5 insertions, 1 deletions
diff --git a/mcs/class/System.Data/System.Data.ProviderBase/ChangeLog b/mcs/class/System.Data/System.Data.ProviderBase/ChangeLog
index 7c6b5ca12da..fc65d1a1f6b 100755
--- a/mcs/class/System.Data/System.Data.ProviderBase/ChangeLog
+++ b/mcs/class/System.Data/System.Data.ProviderBase/ChangeLog
@@ -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:
diff --git a/mcs/class/System.Data/System.Data.ProviderBase/DbParameterBase.cs b/mcs/class/System.Data/System.Data.ProviderBase/DbParameterBase.cs
index 9caa5d39dfe..4ab02cd6331 100644
--- a/mcs/class/System.Data/System.Data.ProviderBase/DbParameterBase.cs
+++ b/mcs/class/System.Data/System.Data.ProviderBase/DbParameterBase.cs
@@ -166,7 +166,7 @@ namespace System.Data.ProviderBase {
}
[MonoTODO]
- protected virtual byte ValueSize (object value)
+ protected virtual int ValueSize (object value)
{
throw new NotImplementedException ();
}