Modified:
branches/5.1/CHANGES
branches/5.1/Driver/Source/MySqlError.cs
Log:
Uncommented access denied error enumeration value (bug #37398)
Modified: branches/5.1/CHANGES
===================================================================
--- branches/5.1/CHANGES 2008-06-17 15:19:30 UTC (rev 1322)
+++ branches/5.1/CHANGES 2008-06-17 15:26:56 UTC (rev 1323)
@@ -6,6 +6,7 @@
when an attempt is made to release them back to the pool (bug #36688)
- Reversed order of Datetime and DateTime enums for MySqlDbType so that VB users won't
get
autocorrection to Datetime (bug #37406)
+ - Uncommented access denied error enumeration value (bug #37398)
Version 5.1.6 - 5/7/08
- Fixed problem where parameters lists were not showing when you tried to alter a
routine
Modified: branches/5.1/Driver/Source/MySqlError.cs
===================================================================
--- branches/5.1/Driver/Source/MySqlError.cs 2008-06-17 15:19:30 UTC (rev 1322)
+++ branches/5.1/Driver/Source/MySqlError.cs 2008-06-17 15:26:56 UTC (rev 1323)
@@ -125,9 +125,12 @@
/// </summary>
UnableToConnectToHost = 1042,
/* ER_HANDSHAKE_ERROR 1043
- ER_DBACCESS_DENIED_ERROR 1044
- ER_ACCESS_DENIED_ERROR 1045
- ER_NO_DB_ERROR 1046
+ ER_DBACCESS_DENIED_ERROR 1044*/
+ /// <summary>
+ /// Normally returned when an incorrect password is given
+ /// </summary>
+ AccessDenied = 1045,
+/* ER_NO_DB_ERROR 1046
ER_UNKNOWN_COM_ERROR 1047
ER_BAD_NULL_ERROR 1048
ER_BAD_DB_ERROR 1049
| Thread |
|---|
| • Connector/NET commit: r1323 - in branches/5.1: . Driver/Source | rburnett | 17 Jun |