我最最进做了个网站,我是用VS2005 + Access 数据库连接,可以我在连接的时候总是出现连接不稳定的情况,同样的代码,一个字也没改,就是连接不上,但是有的又连接的上。真是郁闷,真是弄死人。

    错误原因的代码已经放在如下地址中去了,可以直接进去看。还是连接有问》http://www.whzbqc.com/

    我把能连接到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;
    }

     上面是我用的那个类,修改的时间位置。已经用背景标出来了。

      呵呵,这个连接不稳定的问题到此就结束了。

 

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/cd8866/archive/2009/07/01/4313731.aspx

 posted on 2010-07-19 21:33  ddxgc  阅读(842)  评论(0编辑  收藏  举报