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:
Diffstat (limited to 'mcs/class/System.Data/System.Data.SqlClient.jvm/SqlDataReader.cs')
-rw-r--r--mcs/class/System.Data/System.Data.SqlClient.jvm/SqlDataReader.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/mcs/class/System.Data/System.Data.SqlClient.jvm/SqlDataReader.cs b/mcs/class/System.Data/System.Data.SqlClient.jvm/SqlDataReader.cs
index 84a677aff47..1a0815bf947 100644
--- a/mcs/class/System.Data/System.Data.SqlClient.jvm/SqlDataReader.cs
+++ b/mcs/class/System.Data/System.Data.SqlClient.jvm/SqlDataReader.cs
@@ -30,13 +30,12 @@
//
using System.Data.SqlTypes;
-using System.Data.ProviderBase;
using java.sql;
namespace System.Data.SqlClient
{
- public class SqlDataReader : AbstractDataReader
+ public class SqlDataReader : System.Data.Common.AbstractDataReader
{
#region Constructors
@@ -53,12 +52,12 @@ namespace System.Data.SqlClient
#region Methods
- protected sealed override SystemException CreateException(string message, SQLException e)
+ protected override SystemException CreateException(string message, SQLException e)
{
return new SqlException(message, e, (SqlConnection)_command.Connection);
}
- protected sealed override SystemException CreateException(java.io.IOException e)
+ protected override SystemException CreateException(java.io.IOException e)
{
return new SqlException(e, (SqlConnection)_command.Connection);
}