修复了 6.0.6 以来的错误。
-
尝试
Double.MinValue
从DOUBLE
MySQL 表中的列读取生成以下异常:System.OverflowException : Value was either too large or too small for a Double. --OverflowException at System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt) at MySql.Data.Types.MySqlDouble.MySql.Data.Types.IMySqlValue.ReadValue(MySqlPacket packet, Int64 length, Boolean nullVal) at MySql.Data.MySqlClient.NativeDriver.ReadColumnValue(Int32 index, MySqlField field, IMySqlValue valObject) at MySql.Data.MySqlClient.ResultSet.ReadColumnData(Boolean outputParms) at MySql.Data.MySqlClient.ResultSet.NextRow(CommandBehavior behavior) at MySql.Data.MySqlClient.MySqlDataReader.Read()
(漏洞 #55644)
MySqlDataAdapter.Update()
为使用的自定义存储过程驱动的更新命令生成并发冲突UpdateRowSource.FirstReturnedRecord
。(漏洞 #54895)多次调用 以
DataAdapter.Update()
进行干预更改DataTable
导致ConcurrencyException
生成异常。(漏洞 #54863)该
MySqlHelper
对象没有ExecuteReader
接受MySqlConnection
对象的方法的重载版本。(漏洞 #54570)如果
MySqlDataAdapter
与 子句中包含带括号的表达式 的INSERT
命令 一起使用,并且将参数设置为大于 1,那么调用 要么生成异常,要么无法批处理命令,单独执行每个插入。(漏洞 #54386)VALUES
adapter.UpdateBatchSize
adapter.Update
该方法
MySql.Data.Common.QueryNormalizer.CollapseValueList
生成了一个ArgumentOutOfRangeException
. (错误#54152,错误#53865)-
垃圾收集器处理
MySqlConnection
对象导致以下异常:System.IO.EndOfStreamException: Attempted to read past the end of the stream. MySql.Data.MySqlClient.MySqlStream.ReadFully(Stream stream, Byte[] buffer, Int32 offset, Int32 count) MySql.Data.MySqlClient.MySqlStream.LoadPacket() Outer Exception Reading from the stream has failed. ...
(漏洞 #53457)
-
超时异常后,如果尝试重用返回到连接池的连接,则会生成以下异常:
[MySqlException (0x80004005): There is already an open DataReader associated with this Connection which must be closed first.] MySql.Data.MySqlClient.MySqlCommand.CheckState() +278 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior) +43 MySql.Data.MySqlClient.MySqlCommand.ExecuteReader() +6 Controls.SimpleCommand.ExecuteReader(String SQL) in ...:323 Albums.GetImagesByAlbum(SimpleCommand Cmd, Int32 iAlbum, String Order, String Limit) in ...:13 Forecast.Page_Load(Object sender, EventArgs e) in ...:70 System.Web.UI.Control.OnLoad(EventArgs e) +99 System.Web.UI.Control.LoadRecursive() +50 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
(漏洞 #53357)
如果默认架构排序规则不是 Latin1,则成员架构创建失败。(漏洞 #53174)
EventLog 未在 SessionState 提供程序中处理。(漏洞 #52550)
如果在不返回任何结果集的数据集中使用过程,则存储过程枚举代码会生成错误。(漏洞 #50671)
-
当应用程序承受增加的并发负载时,MySQL Connector/NET 在调用存储过程时生成以下错误:
A DataTable named \'Procedure Parameters\' already belongs to this DataSet.
(漏洞 #49118)
在 ADO.NET 实体数据模型向导中,随着实体数量的增加,更新模型的时间异常增加。(错误#48791,错误#12596237)
当启用压缩时,与 5.x 相比,MySQL Connector/NET 6.x的
INSERT
命令速度明显变慢。(漏洞 #48243)当使用连接字符串选项“ Connection Reset = True ”时,连接重置使用先前使用的编码进行后续身份验证操作。例如,如果使用 UCS2 读取重置前的最后一列,这将失败。(漏洞 #47153)
在 Visual Studio Server Explorer 中打开连接并选择更改现有例程需要在服务器上进行另一次身份验证。(漏洞 #44715)
-
中使用批处理时
MySqlDataAdapter
,中没有自动打开连接MySqlDataAdapter.Update()
。这导致InvalidOperationException
生成异常,消息文本为“连接必须有效且打开”。MySQL Connector/NET 已更改为更像 SQL Server:如果连接关闭,则在更新操作期间打开它。(漏洞 #38411)
数据库名称被发送到类型化数据集中。这会阻止用户使用配置的默认数据库。(漏洞 #33870)