Closed GoogleCodeExporter closed 9 years ago
Original comment by azizatif
on 8 Dec 2009 at 7:00
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
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
Issue 172 has been merged into this issue.
Original comment by azizatif
on 24 May 2010 at 8:05
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
dheeraj.d,
Please submit a patch for your change.
Original comment by nberardi
on 26 Jul 2010 at 12:43
Issue 190 has been merged into this issue.
Original comment by azizatif
on 21 Nov 2010 at 11:03
Original issue reported on code.google.com by
nberardi
on 30 Nov 2009 at 12:50Attachments: