Merge pull request #1179 from ludovic-henry/pr25-threadpool
[mono.git] / mcs / class / System.Web / System.Web.Security / AspNetDBSchemaChecker.cs
1 //
2 // System.Web.Security.SqlMembershipProvider
3 //
4 // Authors:
5 //  Vladimir Krasnov (vladimirk@mainsoft.com)
6 //
7 // (C) 2003 Ben Maurer
8 // Copyright (c) 2005,2006 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 #if NET_2_0
31 using System;
32 using System.Collections.Generic;
33 using System.Text;
34 using System.Data.Common;
35 using System.Data;
36 using System.Configuration.Provider;
37
38 namespace System.Web.Security
39 {
40         internal static class AspNetDBSchemaChecker
41         {
42                 static DbConnection CreateConnection (DbProviderFactory factory, string connStr)
43                 {
44                         DbConnection connection = factory.CreateConnection ();
45                         connection.ConnectionString = connStr;
46
47                         connection.Open ();
48                         return connection;
49                 }
50
51                 public static bool CheckMembershipSchemaVersion (DbProviderFactory factory, string connStr, string feature, string compatibleVersion)
52                 {
53                         using (DbConnection connection = CreateConnection (factory, connStr)) {
54                                 DbCommand command = factory.CreateCommand ();
55                                 command.Connection = connection;
56                                 command.CommandText = @"aspnet_CheckSchemaVersion";
57                                 command.CommandType = CommandType.StoredProcedure;
58
59                                 AddParameter (factory, command, "@Feature", ParameterDirection.Input, feature);
60                                 AddParameter (factory, command, "@CompatibleSchemaVersion", ParameterDirection.Input, compatibleVersion);
61                                 DbParameter returnValue = AddParameter (factory, command, "@ReturnVal", ParameterDirection.ReturnValue, null);
62
63                                 try {
64                                         command.ExecuteNonQuery ();
65                                 }
66                                 catch (Exception) {
67                                         throw new ProviderException ("ASP.NET Membership schema not installed.");
68                                 }
69
70                                 if ((int) (returnValue.Value ?? -1) == 0)
71                                         return true;
72
73                                 return false;
74                         }
75                 }
76
77                 static DbParameter AddParameter (DbProviderFactory factory, DbCommand command, string parameterName, ParameterDirection direction, object parameterValue)
78                 {
79                         DbParameter dbp = command.CreateParameter ();
80                         dbp.ParameterName = parameterName;
81                         dbp.Value = parameterValue;
82                         dbp.Direction = direction;
83                         command.Parameters.Add (dbp);
84                         return dbp;
85                 }
86
87         }
88 }
89 #endif