maoyuan121 / elmah

Automatically exported from code.google.com/p/elmah
Apache License 2.0
0 stars 0 forks source link

Add MySQL support to ELMAH #143

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What new or enhanced feature are you proposing?
ELMAH support for MySQL.

What goal would this enhancement help you achieve?
Adding support to ELMAH for MySQL.

Notes:
I currently have this running in a production environment, so it is as stable 
as I can verify by my self.  

Original issue reported on code.google.com by nberardi on 30 Nov 2009 at 12:50

Attachments:

GoogleCodeExporter commented 9 years ago

Original comment by azizatif on 8 Dec 2009 at 7:00

GoogleCodeExporter commented 9 years ago
I have created a branch for this issue:
http://elmah.googlecode.com/svn/branches/issue-143

You can commit, integrate and test your contribution there directly.

When tested and ready, merge to release branch for 1.2 (RB-1.2):
http://elmah.googlecode.com/svn/branches/RB-1.2

Original comment by azizatif on 10 Dec 2009 at 11:42

GoogleCodeExporter commented 9 years ago
As of check in 691 and 692 there is now support for MySQL 5.1 GA in the .NET 
2.0+ 
versions of the framework.

Original comment by nberardi on 21 Dec 2009 at 8:16

GoogleCodeExporter commented 9 years ago
Issue 172 has been merged into this issue.

Original comment by azizatif on 24 May 2010 at 8:05

GoogleCodeExporter commented 9 years ago
Bug: Line 283
parameters.Add("Message", MySqlDbType.VarChar, 500).Value = 
message.Substring(0, Math.Min(500, source.Length));

should be

parameters.Add("Message", MySqlDbType.VarChar, 500).Value = 
message.Substring(0, Math.Min(500, message.Length));

source.Length -> message.Length

Original comment by dheera...@gmail.com on 25 Jul 2010 at 2:19

GoogleCodeExporter commented 9 years ago
dheeraj.d,

Please submit a patch for your change.

Original comment by nberardi on 26 Jul 2010 at 12:43

GoogleCodeExporter commented 9 years ago
Issue 190 has been merged into this issue.

Original comment by azizatif on 21 Nov 2010 at 11:03