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/Test/ProviderTests/Common/ConnectionManager.cs')
-rw-r--r--mcs/class/System.Data/Test/ProviderTests/Common/ConnectionManager.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/mcs/class/System.Data/Test/ProviderTests/Common/ConnectionManager.cs b/mcs/class/System.Data/Test/ProviderTests/Common/ConnectionManager.cs
index 1cc8d7a0ee5..6eba20ef22c 100644
--- a/mcs/class/System.Data/Test/ProviderTests/Common/ConnectionManager.cs
+++ b/mcs/class/System.Data/Test/ProviderTests/Common/ConnectionManager.cs
@@ -31,9 +31,7 @@
using System;
using System.Configuration;
using System.Data;
-#if NET_2_0
using System.Data.Common;
-#endif
#if ONLY_1_1
using Mono.Data;
@@ -44,11 +42,7 @@ namespace MonoTests.System.Data
public class ConnectionManager
{
private static ConnectionManager Instance;
-#if NET_2_0
private DbConnection _connection;
-#else
- private IDbConnection _connection;
-#endif
private string _connectionString;
private EngineConfig _engine;
@@ -64,26 +58,16 @@ namespace MonoTests.System.Data
throw new ArgumentException ("PROVIDER_TESTS_CONNECTION environment variable is not set.");
ConnectionConfig [] connections = (ConnectionConfig [])
-#if NET_2_0
ConfigurationManager.GetSection ("providerTests");
-#else
- ConfigurationSettings.GetConfig ("providerTests");
-#endif
foreach (ConnectionConfig connConfig in connections) {
if (connConfig.Name != connection_name)
continue;
_connectionString = connConfig.ConnectionString;
-#if NET_2_0
DbProviderFactory factory = DbProviderFactories.GetFactory (
connConfig.Factory);
_connection = factory.CreateConnection ();
_connection.ConnectionString = _connectionString;
-#else
- _connection = ProviderFactory.CreateConnection (
- string.Concat ("factory=", connConfig.Factory,
- ";", _connectionString));
-#endif
_connectionString = _connection.ConnectionString;
_engine = connConfig.Engine;
return;
@@ -97,11 +81,7 @@ namespace MonoTests.System.Data
}
public
-#if NET_2_0
DbConnection
-#else
- IDbConnection
-#endif
Connection {
get {return _connection;}
}