ADO.NET Driver for MySQL
MySql.Data.dll是.Net訪問MySQL資料庫的一個驅動,完全ADO.NET資料訪問模式,由MySQL官方提供,有多個版本可選擇。
最早使用的環境:.Net2.0+MySQL5.x+MySQL.data.dll 1.0.7,感覺似乎很穩定,一直沒什麼大問題。隨著系統升級,嘗試更新MySql.Data.dll版本(1.07版本官方早不提供下載了,現在最新版本分別是:1.0.10,5.0.8,5.1.4),問題出現了,經常會出現異常The timeout period elapsed prior to completion of the operation or the server is not responding
在商務邏輯及資料不變的情況下,僅更換MySql.Data.dll就出現異常讓我費盡了心思。
其實在SQLServer中有時也出現此問題,有人建議設定ConnectionTimeout和CommandTimeout時間長度來解決,MySql.Data.dll中也有這些屬性,下載了MySql.Data.dll的源碼,看了下,似乎發現了一線希望,在1.07版本的源碼中ConnectionString.cs類中有
[Category("Connection")]
[Description("Number of seconds to wait for the connection to succeed")]
[DefaultValue(15)]
public int ConnectionTimeout
{
get { return GetInt("connect timeout"); }
}
唯讀屬性,預設值為15秒,可以在連接字串設定。
在command.cs類中有
[Category("Misc")]
[Description("Time to wait for command to execute")]
public int CommandTimeout
{
// TODO: support this
get { return 0; }
set { if (value != 0) throw new NotSupportedException(); }
}
預設值是0,表示沒時間長度限制?猜的。對其賦值如不為0,則拋出異常,也就是說賦值只能為0,那也就是該屬性唯讀了?其值不可改變。
再來看新版本的,在5.0.8的源碼中MySqlConnectionStringBuilder.cs類中有
[Category("Connection")]
[DisplayName("Connect Timeout")]
[Description("The length of time (in seconds) to wait for a connection " +
"to the server before terminating the attempt and generating an error.")]
[DefaultValue(15)]
[RefreshProperties(RefreshProperties.All)]
public uint ConnectionTimeout
{
get { return connectionTimeout; }
set
{
SetValue("Connect Timeout", value);
connectionTimeout = value;
}
}
屬性可讀寫,預設值為15秒。
在command.cs類中有
[Category("Misc")]
[Description("Time to wait for command to execute")]
[DefaultValue(30)]
public override int CommandTimeout
{
get { return commandTimeout; }
set { commandTimeout = value; }
}
屬性可讀寫,預設值為30秒(這些預設值感覺跟SQLServer一樣的),這一點跟1.0.7就不同了。1.0.7為唯讀且值為0。
我感覺前面提到的Timeout異常跟這裡有很大關係,準備測試下.......
PS:希望能在園子裡找些用MySQL的朋友,有問題可以一起探討,在社區建了個小組: .Net+MySQL