2004-11-10 Martin Baulig <martin@ximian.com>
authorMartin Baulig <martin@novell.com>
Wed, 10 Nov 2004 07:10:00 +0000 (07:10 -0000)
committerMartin Baulig <martin@novell.com>
Wed, 10 Nov 2004 07:10:00 +0000 (07:10 -0000)
 * System.Data.Sql/ISqlCommand.cs,
 System.Data.Sql/ISqlConnection.cs,
 System.Data.Sql/ISqlExecutionContext.cs,
 System.Data.Sql/ISqlParameterCollection.cs,
 System.Data.Sql/ISqlTransaction.cs: Added `new' modifiers where needed.

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

mcs/class/System.Data/ChangeLog
mcs/class/System.Data/System.Data.Sql/ISqlCommand.cs
mcs/class/System.Data/System.Data.Sql/ISqlConnection.cs
mcs/class/System.Data/System.Data.Sql/ISqlExecutionContext.cs
mcs/class/System.Data/System.Data.Sql/ISqlParameterCollection.cs
mcs/class/System.Data/System.Data.Sql/ISqlTransaction.cs

index 4adc8e5aa47b2801ffbd354628f8d308dd5fc88a..317fb110eb5fc2a7d4ff5a02dfe2e1bd8851c478 100644 (file)
@@ -1,3 +1,11 @@
+2004-11-10  Martin Baulig  <martin@ximian.com>
+
+        * System.Data.Sql/ISqlCommand.cs,
+        System.Data.Sql/ISqlConnection.cs,
+        System.Data.Sql/ISqlExecutionContext.cs,
+        System.Data.Sql/ISqlParameterCollection.cs,
+        System.Data.Sql/ISqlTransaction.cs: Added `new' modifiers where needed.
+
 2004-10-06  Umadevi S <sumadevi@novell.com>
        * System.Data.dll.sources : Added ISqlNotificationReceiver, SqlNotifcationType,
                SqlNotificationInfo, SqlNotificationSource
index 1455673a6d0dfde8eae5c678b4a4f6d037386aef..03504f71b80d2d2d3e2798733c92c856df71f700 100644 (file)
@@ -39,20 +39,20 @@ namespace System.Data.Sql {
        {
                #region Properties
 
-               ISqlConnection Connection { get; set; }
+               new ISqlConnection Connection { get; set; }
                SqlNotificationRequest Notification { get; set; }
-               ISqlParameterCollection Parameters { get; }
-               ISqlTransaction Transaction { get; set; }
+               new ISqlParameterCollection Parameters { get; }
+               new ISqlTransaction Transaction { get; set; }
 
                #endregion // Properties
 
                #region Methods
 
-               ISqlParameter CreateParameter ();
+               new ISqlParameter CreateParameter ();
 
                ISqlReader ExecutePageReader (CommandBehavior behavior, int startRow, int pageSize);
-               ISqlReader ExecuteReader ();
-               ISqlReader ExecuteReader (CommandBehavior behavior);
+               new ISqlReader ExecuteReader ();
+               new ISqlReader ExecuteReader (CommandBehavior behavior);
                ISqlResultSet ExecuteResultSet (ResultSetOptions options);
                ISqlResultSet ExecuteResultSet (ResultSetOptions options, string cursorname);
                ISqlRecord ExecuteRow ();
index 2fc88c06013fa0ed72b6f64df9313e68ca3d4db2..5a4d2d9a71e830e9ee3567fe32ed112f4c51e14e 100644 (file)
@@ -45,11 +45,11 @@ namespace System.Data.Sql {
 
                #region Methods
 
-               ISqlTransaction BeginTransaction ();
-               ISqlTransaction BeginTransaction (IsolationLevel iso);
+               new ISqlTransaction BeginTransaction ();
+               new ISqlTransaction BeginTransaction (IsolationLevel iso);
                ISqlTransaction BeginTransaction (string transactionName);
                ISqlTransaction BeginTransaction (IsolationLevel iso, string transactionName);
-               ISqlCommand CreateCommand ();
+               new ISqlCommand CreateCommand ();
                ISqlCommand CreateCommand (string commandText);
                ISqlExecutionContext CreateExecutionContext (SqlDefinition sqlDefinition);
 
index 945a271e327eb8b1a08ee4440c443e7645594639..47543d8a117d759a54915b83243483ae14695240 100644 (file)
@@ -39,9 +39,9 @@ namespace System.Data.Sql {
        {
                #region Properties
 
-               ISqlConnection Connection { get; set; }
+               new ISqlConnection Connection { get; set; }
                SqlNotificationRequest Notification { get; set; }
-               ISqlTransaction Transaction { get; set; }
+               new ISqlTransaction Transaction { get; set; }
                
 
                #endregion // Properties
@@ -49,8 +49,8 @@ namespace System.Data.Sql {
                #region Methods
 
                ISqlReader ExecutePageReader (CommandBehavior behavior, int startRow, int pageSize);
-               ISqlReader ExecuteReader ();
-               ISqlReader ExecuteReader (CommandBehavior behavior);
+               new ISqlReader ExecuteReader ();
+               new ISqlReader ExecuteReader (CommandBehavior behavior);
                ISqlResultSet ExecuteResultSet (ResultSetOptions options);
                ISqlResultSet ExecuteResultSet (ResultSetOptions options, string cursorname);
                ISqlRecord ExecuteRow ();
index 32ca19d8fe79e7a8ee85b32b4eb011711e532518..5890fea519251ddaac5f023a0fa744ac21ab1a4e 100644 (file)
@@ -40,8 +40,8 @@ namespace System.Data.Sql {
        {
                #region Properties
 
-               ISqlParameter this [[Optional] int index] { get; set; }
-               ISqlParameter this [[Optional] string name] { get; set; }
+               new ISqlParameter this [[Optional] int index] { get; set; }
+               new ISqlParameter this [[Optional] string name] { get; set; }
 
                #endregion // Properties
 
index 79c28f47f96b1c88af19fd70d772b7259fc94b19..9446a662f494cd95d79eed501c6f1dffcbe8be82 100644 (file)
@@ -37,7 +37,7 @@ namespace System.Data.Sql {
        {
                #region Properties
 
-               ISqlConnection Connection { get; }
+               new ISqlConnection Connection { get; }
 
                #endregion // Properties