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

DbProviderFactories.cs « System.Data.Common « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0964c5b29576d7452fbd98c28c9f2ec1efb81c8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// System.Data.Common.DbProviderFactories.cs
//
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2003
//

#if NET_1_2

using System.Collections;

namespace System.Data.Common {
	public sealed class DbProviderFactories
	{
		#region Methods

		[MonoTODO]
		public static DbProviderFactory GetFactory (DataRow providerRow)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public static DbProviderFactory GetFactory (string providerInvariantName)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public static DataTable GetFactoryClasses ()
		{
			throw new NotImplementedException ();
		}

		#endregion // Methods
	}
}

#endif // NET_1_2