Click here to Skip to main content
Licence 
First Posted 16 Nov 2005
Views 504,921
Bookmarked 170 times

Membership and Role providers for MySQL

By | 20 Dec 2005 | Article
This article provides two files that contain a Membership Provider and a Role Provider for ASP.NET v2.0.
 
Part of The SQL Zone sponsored by
See Also

Introduction

This article provides two files that contain a Membership provider and a Role provider for ASP.NET v2.0.

Microsoft provides a Membership provider in the framework but only for SQL Server. The class does not seem to work for MySQL so I decided to write a new provider from the ODBC provider sample code included in the framework SDK.

How to use it

To use these classes, you will need the latest MySQL .NET Connector. You might need to recompile it with the new C# compiler for v2.0 (but the new framework should normally support v1.0 or 1.1 assemblies).

  1. Create the tables (note that these SQL commands might not work with MySQL 4).
    CREATE TABLE Roles
    (
      Rolename Varchar (255) NOT NULL,
      ApplicationName varchar (255) NOT NULL
    )
    
    CREATE TABLE UsersInRoles
    (
      Username Varchar (255) NOT NULL,
      Rolename Varchar (255) NOT NULL,
      ApplicationName Text (255) NOT NULL
    )
    ALTER TABLE 'usersinroles' 
          ADD INDEX ( 'Username', 'Rolename', 'ApplicationName') ;
    ALTER TABLE 'roles' ADD INDEX ( 'Rolename' , 'ApplicationName' ) ;
    
    CREATE TABLE 'users' (
      'PKID' varchar(36) collate latin1_general_ci NOT NULL default '',
      'Username' varchar(255) collate latin1_general_ci NOT NULL default '',
      'ApplicationName' varchar(100) 
                        collate latin1_general_ci NOT NULL default '',
      'Email' varchar(100) collate latin1_general_ci NOT NULL default '',
      'Comment' varchar(255) collate latin1_general_ci default NULL,
      'Password' varchar(128) collate latin1_general_ci NOT NULL default '',
      'PasswordQuestion' varchar(255) collate latin1_general_ci default NULL,
      'PasswordAnswer' varchar(255) collate latin1_general_ci default NULL,
      'IsApproved' tinyint(1) default NULL,
      'LastActivityDate' datetime default NULL,
      'LastLoginDate' datetime default NULL,
      'LastPasswordChangedDate' datetime default NULL,
      'CreationDate' datetime default NULL,
      'IsOnLine' tinyint(1) default NULL,
      'IsLockedOut' tinyint(1) default NULL,
      'LastLockedOutDate' datetime default NULL,
      'FailedPasswordAttemptCount' int(11) default NULL,
      'FailedPasswordAttemptWindowStart' datetime default NULL,
      'FailedPasswordAnswerAttemptCount' int(11) default NULL,
      'FailedPasswordAnswerAttemptWindowStart' datetime default NULL,
      PRIMARY KEY  ('PKID')
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  2. Change MySqlMembershipProvider::encryptionKey to a random hexadecimal value of your choice.
  3. Upload the two files to ~/App_Code.
  4. Modify your web.config using the following template (if you are on a shared hosting server, you will have to set writeExceptionsToEventLog to false):
    <connectionStrings>
        <add name="ConnString" 
          connectionString="Database=YOURDBNAME;Data Source=localhost;
                            User Id=YOURUSERNAME;Password=YOURPWD" />
    </connectionStrings>
    <system.web>
        <roleManager defaultProvider="MySqlRoleProvider"
            enabled="true"
            cacheRolesInCookie="true"
            cookieName=".ASPROLES"
            cookieTimeout="30"
            cookiePath="/"
            cookieRequireSSL="false"
            cookieSlidingExpiration="true"
            cookieProtection="All" >
        <providers>
            <clear />
            <add
                name="MySqlRoleProvider"
                type="Andri.Web.MySqlRoleProvider"
                connectionStringName="ConnString"
                applicationName="YOURAPPNAME"
                writeExceptionsToEventLog="true"
            />
        </providers>
        </roleManager>
        
        <membership defaultProvider="MySqlMembershipProvider" 
                    userIsOnlineTimeWindow="15">
            <providers>
                <clear />
                <add
                    name="MySqlMembershipProvider"
                    type="Andri.Web.MySqlMembershipProvider"
                    connectionStringName="ConnString"
                    applicationName="YOURAPPNAME"
                    enablePasswordRetrieval="false"
                    enablePasswordReset="true"
                    requiresQuestionAndAnswer="true"
                    requiresUniqueEmail="true"
                    passwordFormat="Hashed"
                    writeExceptionsToEventLog="true"
                />
          </providers>
        </membership>
    </system.web>
  5. That's it! You can use the login controls provided in the ASP.NET framework v2.0 if you want or use your own controls.

You can do whatever you want with this code but just send me an email if you have done some improvements or some bug correction. Isn't that what this website is about, sharing?

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Rakotomalala Andriniaina

Web Developer

France France

Member

I am a software developper working for a multinational, in the south of France.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralRe: Here is the VB Version PinmemberZyndrof6:49 26 Apr '07  
AnswerRe: Here is the VB Version Pinmemberdustinhorne10:24 30 Apr '07  
GeneralRe: Here is the VB Version Pinmemberdustinhorne4:06 14 Sep '07  
QuestionHow to create login session? PinmemberMaysoon_Ahmad11:14 2 Apr '07  
GeneralUpdated Code Pinmembercyber0ne12:53 10 Mar '07  
QuestionHow about a VB version of this, is there one out there? Pinmembersrbytes9:48 5 Mar '07  
AnswerRe: How about a VB version of this, is there one out there? Pinmemberpjohanse18:57 9 Mar '07  
An easy way to make your own VB set of these files is compile them into a class library, then use .NET Reflector to disassamble them into VB.
 
1. File>> New Project>> C# Class Library
 
2. Delete class1.cs
 
3. Add references to System.Web, System.Configuration, MySQL.Data
 
4. Add the 2 C# files from this download
 
5. Open up Lutz Reoder's .NET Reflector
 
5.1 Realizing you are a VB developer, you probably don't have this... so go download it. Wink | ;-)
 
6. Open up the assembly in the tool, change the output language to VB, drill down to the appropriate class, right click and choose dissasemble. The code will appear in the right. Scroll down and choose to expand methods. Voila, your very own VB copy of the code.
 
Other options: grow a set and move to C#.
GeneralRe: How about a VB version of this, is there one out there? Pinmemberoitt9921:46 9 Mar '07  
GeneralRe: How about a VB version of this, is there one out there? Pinmemberoitt9922:52 11 Mar '07  
GeneralRe: How about a VB version of this, is there one out there? Pinmemberoitt997:43 12 Mar '07  
QuestionPasswordRecovery Control Problem PinmemberPurple Fox4:44 22 Jan '07  
QuestionRe: PasswordRecovery Control Problem Pinmemberjosepaulino17:57 30 Sep '07  
AnswerRe: PasswordRecovery Control Problem PinmemberPurple Fox23:18 30 Sep '07  
GeneralRe: PasswordRecovery Control Problem Pinmemberjosepaulino11:12 1 Oct '07  
GeneralThat assembly does not allow partially trusted callers Pinmembergabbeauchamp11:04 1 Dec '06  
GeneralRe: That assembly does not allow partially trusted callers Pinmember_metroid_8:42 6 Dec '06  
GeneralError When Creating User PinmemberBrad875:16 30 Nov '06  
GeneralRe: Error When Creating User PinmemberJFH10810:18 24 Dec '06  
GeneralRe: Error When Creating User PinmemberDerek Curtis8:08 3 Feb '07  
AnswerRe: Error When Creating User Pinmemberdustinhorne11:16 5 Apr '07  
GeneralVB.Net version PinmembertheDude5B3:37 6 Nov '06  
GeneralRe: VB.Net version PinmemberKilty1:56 20 Feb '07  
QuestionQuestion PinmemberShin-Ra10:11 31 Oct '06  
QuestionNew code doesn't work Pinmemberflaxx23:04 1 Oct '06  
AnswerRe: New code doesn't work Pinmemberperlmunger11:26 18 Oct '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 20 Dec 2005
Article Copyright 2005 by Rakotomalala Andriniaina
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid