MySqlProfileProvider problems with vs 3.5.11

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for MySQL
Post Reply
John B

MySqlProfileProvider problems with vs 3.5.11

Post by John B » Fri 07 Jul 2006 20:18

I just upgraded from the trial version 3.5.10 to the licensed professional version 3.5.11. In version 3.5.10 I was able to update membership profile information, but now it doesn't seem to work in version 3.5.11.

Has anyone else experienced this problem?

If the fix is going to be a while, how can I get an older licensed version?

Thanks,
John

Alexey
Posts: 2756
Joined: Mon 13 Mar 2006 07:43

Post by Alexey » Mon 10 Jul 2006 12:34

Please describe here in the forum what exactly you need or what is the
problem.

jbull
Posts: 1
Joined: Fri 07 Jul 2006 20:07

More information

Post by jbull » Mon 10 Jul 2006 22:51

In one of the administration pages I built on my website to add and modify users, I store information in the aspnet_profiles table using the MySqlProfileProvider.

Example code
ProfileCommon userProfile = Profile.GetProfile("some user");
userProfile.FirstName = firstname.Text;
userProfile.Save();

These lines of code run fun and don't return any errors, but the profile entry in the aspnet_profiles table is not updated. The exact same lines of code using version 3.5.10 worked fine. I noticed that one of the changes in version 3.5.11 was a fix for inserting blob types. Maybe this change caused the profile table not be updated?

Let me know if you need any additional information from me?

Thanks,
John B

Alexey
Posts: 2756
Joined: Mon 13 Mar 2006 07:43

Post by Alexey » Tue 11 Jul 2006 09:49

Could you please send us small test project to reproduce the problem.

Post Reply