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:
authorSureshkumar T <suresh@mono-cvs.ximian.com>2005-07-22 14:57:02 +0400
committerSureshkumar T <suresh@mono-cvs.ximian.com>2005-07-22 14:57:02 +0400
commit88fba070be76107837ec387d8c312262b3e76cb5 (patch)
tree176af780cfa3d54188e0c007c374b6b7a5e78665 /mcs/class/System.Data/System.Data.Odbc
parentaee4a4f5908ca3eb69dace69d342868c8b31280d (diff)
In System.Data.Common:
2005-07-22 Sureshkumar T <tsureshkumar@novell.com> * DataColumnMappingCollection.cs: updated attributes & attribute descriptions to match with masterinfos. In System.Data.SqlClient: 2005-07-22 Sureshkumar T <tsureshkumar@novell.com> * SqlCommandBuilder.cs, SqlParameterCollection.cs, SqlConnection.cs, SqlParameter.cs: - updated attributes & attribute descriptions to match with masterinfos. In System.Data: * DataViewSettingCollection.cs, DataTableCollection.cs, DataSet.cs, DataView.cs, DataColumn.cs, ForeignKeyConstraint.cs, DataRelationCollection.cs, UniqueConstraint.cs, DataTable.cs, DataColumnCollection.cs, DataRelation.cs, DataSet.cs: - updated attributes & attribute descriptions to match with masterinfos. In System.Data.Odbc: * OdbcParameter.cs: updated attributes & attribute descriptions to match with masterinfos. svn path=/trunk/mcs/; revision=47554
Diffstat (limited to 'mcs/class/System.Data/System.Data.Odbc')
-rw-r--r--mcs/class/System.Data/System.Data.Odbc/ChangeLog3
-rw-r--r--mcs/class/System.Data/System.Data.Odbc/OdbcParameter.cs2
2 files changed, 4 insertions, 1 deletions
diff --git a/mcs/class/System.Data/System.Data.Odbc/ChangeLog b/mcs/class/System.Data/System.Data.Odbc/ChangeLog
index ae98a672f1f..fa145da6536 100644
--- a/mcs/class/System.Data/System.Data.Odbc/ChangeLog
+++ b/mcs/class/System.Data/System.Data.Odbc/ChangeLog
@@ -1,5 +1,8 @@
2005-07-22 Sureshkumar T <tsureshkumar@novell.com>
+ * OdbcParameter.cs: updated attributes & attribute descriptions to
+ match with masterinfos.
+
* OdbcDataReader.cs: NextRow (): made private.
2005-07-21 Sureshkumar T <tsureshkumar@novell.com>
diff --git a/mcs/class/System.Data/System.Data.Odbc/OdbcParameter.cs b/mcs/class/System.Data/System.Data.Odbc/OdbcParameter.cs
index e487f660b84..e5266e520b5 100644
--- a/mcs/class/System.Data/System.Data.Odbc/OdbcParameter.cs
+++ b/mcs/class/System.Data/System.Data.Odbc/OdbcParameter.cs
@@ -240,7 +240,7 @@ namespace System.Data.Odbc
[OdbcDescription ("DataParameter_SourceVersion")]
[OdbcCategory ("DataCategory_Data")]
- [DefaultValue (512)]
+ [DefaultValue ("Current")]
public DataRowVersion SourceVersion {
get { return sourceVersion; }
set { sourceVersion = value; }