Use ExecuteReader instead of ExecuteNonQuery. We need to use the CommandBehavior...
[mono.git] / mcs / class / System.Data / System.Data.Common / DbProviderFactories.cs
1 //
2 // System.Data.Common.DbProviderFactories.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
9
10 #if NET_1_2
11
12 using System.Collections;
13
14 namespace System.Data.Common {
15         public sealed class DbProviderFactories
16         {
17                 #region Methods
18
19                 [MonoTODO]
20                 public static DbProviderFactory GetFactory (DataRow providerRow)
21                 {
22                         throw new NotImplementedException ();
23                 }
24
25                 [MonoTODO]
26                 public static DbProviderFactory GetFactory (string providerInvariantName)
27                 {
28                         throw new NotImplementedException ();
29                 }
30
31                 [MonoTODO]
32                 public static DataTable GetFactoryClasses ()
33                 {
34                         throw new NotImplementedException ();
35                 }
36
37                 #endregion // Methods
38         }
39 }
40
41 #endif // NET_1_2