This release fixes bugs since 6.2.4.
Bugs fixed:
MembershipProviderdid not generate hashes correctly if the algorithm was keyed. The Key of the algorithm should have been set if theHashAlgorithmwasKeyedHashAlgorithm. (Bug#58906)Code introduced to fix Bug#54863 proved problematic on .NET version 3.5 and above. (Bug#58853)
The
MySqlTokenizercontained unnecessarySubstringandTrimcalls:string token = sql.Substring(startIndex, stopIndex - startIndex).Trim();
The variable
tokenwas not used anywhere in the code. (Bug#58757)MySqlCommand.ExecuteReader(CommandBehavior)threw aNullReferenceExceptionwhen being called withCommandBehavior.CloseConnection, if the SQL statement contained a syntax error, or contained invalid data such as an invalid column name. (Bug#58652)ReadFieldLength()returned incorrect value forBIGINTautoincrement columns. (Bug#58373)MySQL Connector/NET did not support the
utf8mb4character set. When attempting to connect toutf8mb4tables or columns, an exceptionKeyNotFoundExceptionwas generated. (Bug#58244)Setting
MySqlCommand.CommandTimeoutto 0 had no effect. It should have resulted in an infinite timeout. (Bug#57265)When performing a row-by-row update, only the first row was updated and all other rows were ignored. (Bug#57092)
Setting the
Default Command Timeoutconnection string option had no effect. (Bug#56806)When an output parameter was declared as type
MySqlDbType.Bit, it failed to return with the correct value. (Bug#56756)MySqlHelper.ExecuteReaderdid not include an overload acceptingMySqlParameterobjects when using aMySqlConnection. However,MySqlHelperdid include an overload forMySqlParameterobjects when using a string object containing the connection string to the database. (Bug#56755)Default values returned for text columns were not quoted. This meant that the
COLUMN_DEFAULTfield of theGetSchemacolumns collection did not return a valid SQL expression. (Bug#56509)MySQL Connector/NET for .NET/Mono attempted to dynamically load the assembly
Mono.Posix.dllwhen a Unix socket was used to connect to the server. This failed and the connector was not able to use a Unix socket unless theMono.Posix.dllassembly was previously loaded by the program. (Bug#56410)The ADO.NET Entity Data Model could not add stored procedures from MySQL Server 5.0.45 but worked fine using MySQL Server 5.1. (Bug#55349)