asp.net Accee資料庫連接不穩定解決方案

來源:互聯網
上載者:User

錯誤資訊如下:
寫了如下的一個方法來返回資料操作影響的行數:如下 複製代碼 代碼如下:private int GetReturnValue(string sStr, string conn) {
OleDbConnection odbconn = AccessHelp(conn);
OleDbCommand odbcmd = new OleDbCommand(sStr, odbconn);
return odbcmd.ExecuteNonQuery();
}

用下面的一個方法來調用這個類: 複製代碼 代碼如下:public int wsbm(string[] str) {
StringBuilder sb=new StringBuilder();
sb.Append("INSERT INTO ").Append("wsbm(zy, studentname, parentname)");
sb.Append(" VALUES (");
sb.Append("'" + str[0] + "', '" + str[1] + "', '" + str[2] + "'");
sb.Append(")");
return GetReturnValue(sb.ToString(), "ODBconn");
}

在這個事件中發送資料: 複製代碼 代碼如下:protected void Bttj_Click(object sender, EventArgs e) {
string[] sStr = new string[] {
this.ddlzy.SelectedItem.Text,
this.tbName.Text,
this.tbbb.Text,
};
if (ad.wsbm(sStr) > 0) {
Response.Write("<script>alert('插入成功!')</script>");
}
}

執行了之後的結果如,這是什麼原因???

我把能串連到Access資料庫所有的方式全用了下,結果還是這個樣,串連方式如下: 複製代碼 代碼如下:private OleDbConnection AccessHelp(string str){
OleDbConnection odbconn = new OleDbConnection();
try{
string sStr2 = "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=false;Data Source=" + Server.MapPath(@"App_Data\#fdaeg35@#gds.mdb");
odbconn.ConnectionString = sStr2;
if (odbconn.State == ConnectionState.Closed){
odbconn.Open();
}
else{
sStr2 = "DBQ=" + Server.MapPath(@"App_Data\#fdaeg35@#gds.mdb") + ";DefaultDir=;DRIVER={Microsoft Access Driver (*.mdb)};";
odbconn.ConnectionString = sStr2;
if (odbconn.State == ConnectionState.Closed){
odbconn.Open();
}
}
}
catch{
try{
//odbconn = new OleDbConnection(ConfigurationManager.ConnectionStrings[str].ConnectionString);
odbconn.ConnectionString = ConfigurationManager.ConnectionStrings[str].ConnectionString;
if (odbconn.State == ConnectionState.Closed){
odbconn.Open();
}
}
catch{
string sStr1 = @"Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=false;Data Source=.\App_Data\#fdaeg35@#gds.mdb";
//odbconn = new OleDbConnection(sStr1);
odbconn.ConnectionString = sStr1;
if (odbconn.State == ConnectionState.Closed){
odbconn.Open();
}
}
}
return odbconn;
}

我的上片中把連結的方式全部在本地測試了下,一點問題也沒有,效能方面一樣是絕對沒問題的,他是在我開發完這個的時候在本地是好的,一發到網域名稱空間去就有問題來了,這裡我看了下我的異常問題:異常結果

結果把英文給翻譯過來說的是:請求逾時,串連池已經達到了最高上限制。看完後心多涼了一節,回想了下,原來我的串連已經被系統給自己預設了15秒請求時間,後來我直接把連線時間改成了1分鐘。如代碼:

複製代碼 代碼如下:private OleDbConnection AccessHelp(string str) {
OleDbConnection odbconn = new OleDbConnection();
try {
string sStr2 = "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=false;connection timeout=120;Data Source=" + Server.MapPath(@"App_Data\#fdaeg35@#gds.mdb");
odbconn.ConnectionString = sStr2;
if (odbconn.State == ConnectionState.Closed) {
odbconn.Open();
}
else{
sStr2 = "DBQ=" + Server.MapPath(@"App_Data\#fdaeg35@#gds.mdb") + ";DefaultDir=;DRIVER={Microsoft Access Driver (*.mdb)};connection timeout=120;";
odbconn.ConnectionString = sStr2;
if (odbconn.State == ConnectionState.Closed) {
odbconn.Open();
}
}
}
catch {
try {
//odbconn = new OleDbConnection(ConfigurationManager.ConnectionStrings[str].ConnectionString);
odbconn.ConnectionString = ConfigurationManager.ConnectionStrings[str].ConnectionString;
if (odbconn.State == ConnectionState.Closed) {
odbconn.Open();
}
}
catch {
string sStr1 = @"Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=false;connection timeout=120;Data Source=.\App_Data\#fdaeg35@#gds.mdb";
//odbconn = new OleDbConnection(sStr1);
odbconn.ConnectionString = sStr1;
if (odbconn.State == ConnectionState.Closed) {
odbconn.Open();
}
}
}
return odbconn;
}

結果我把這些代碼改成了這樣了,就解決了連線逾時的問題了。
在上面的幾篇中寫到串連資料庫,出現不穩定是串連池的預設時間改長些,改了之後,要是在很卡的時間內,不停的重新整理,可是,就出來了有一個嚴重的問題是,平凡的資料丟失問題來了,結果我用測試軟體來測試,沒看到結果,因為我們本地妹有辦法測試出來,我的配置和伺服器的配置是有點不同的,在說了,通常以個伺服器不是和我們的本地那樣,就我們一個網站在用,我的類是把SQLHelper串連資料Sql資料庫的串連方式改成了串連Access資料庫的,類就排除了問題,我只是直接掉用他的類,給了些參數而以,所以這些全是沒什麼問題的,可以是在很卡的時間內就會出現,去望是找便了,就是沒看到結果,我就在後來在英文的部落格中看到,原來我勿略了一個屬性,這個屬性是:OldbConnection成員下的ConnectionTimeout這個串連錯誤並發時間在什麼時間內結束,如果你是在很卡的情況下,正好就是被預設的30秒個定義成看逾時狀態,你修下裡面的如何檔案就會恢複正常。結果我個這個屬性給了個1分鐘,就正常了。我建議你們別給得太長的時間了,給長時間了,一但真的出錯了,那可是要把別人的電腦卡定螢幕的哦。總是在那嘗試這串連。那經後就會越來越少的人來訪問了。 複製代碼 代碼如下:private static void PrepareCommand(OldbCommand command, OldbConnection connection, OldbTransaction transaction, CommandType commandType, string commandText, SqlParameter[] commandParameters, out bool mustCloseConnection) {
if (command == null) throw new ArgumentNullException("command");
if (commandText == null || commandText.Length == 0) throw new ArgumentNullException("commandText");
// If the provided connection is not open, we will open it
if (connection.State != ConnectionState.Open) {
mustCloseConnection = true;
connection.Open();
}
else {
mustCloseConnection = false;
}
// Associate the connection with the command
command.Connection = connection;
// Set the command text (stored procedure name or SQL statement)
command.CommandText = commandText;
//Set the command Time
command.CommandTimeout = 60;
// If we were provided a transaction, assign it
if (transaction != null) {
if (transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");
command.Transaction = transaction;
}
// Set the command type
command.CommandType = commandType;
// Attach the command parameters if they are provided
if (commandParameters != null) {
AttachParameters(command, commandParameters);
}
return;
}

上面是我用的那個類,修改的時間位置。已經用背景標出來了。
呵呵,這個串連不穩定的問題到此就結束了。
本文專業技術是ASP.Net開發,在次謝謝你對我的部落格的關注。
有問題也可以加我Q我哦。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.