1

我知道什么是越界索引。当我调试时,我也看到了原因。基本上正在发生的事情是我对我的数据库进行过滤以查找潜在/待定的记录。然后,我收集一组这些数字,将它们发送到另一台服务器,以检查这些数字是否已升级为销售。如果它已升级为销售,服务器会返回新的销售订单 ID 和我的旧待处理销售订单 ID (SourceID)。然后,我在该列表上执行一个 for 循环,以将其过滤掉特定的 SourceID,并将 SourceID 更新为销售订单 ID,并更改几个其他值。问题是,当我在第一个过滤器上使用该过滤器时,它会引发索引越界错误。我检查过滤器返回的结果,它显示为 0。我觉得有点奇怪,因为我从列表中获取了销售订单号,所以它应该在那里。所以我不知道这笔交易是什么。这是引发错误的相关代码。而且它并非一直都这样做。就像我今天早上刚刚运行代码并没有抛出错误一样。但昨晚在我回家之前发生了。

        filter.RowFilter = string.Format("Stage = '{0}'", Potential.PotentialSale);
        if (filter.Count > 0)
        {
            var Soids = new int[filter.Count];
            Console.Write("Searching for Soids - (");
            for (int i = 0; i < filter.Count; i++)
            {
                Console.Write(filter[i][1].ToString() + ",");
                Soids[i] = (int)filter[i][1];
            }
            Console.WriteLine(")");
            var pendingRecords = Server.GetSoldRecords(Soids);
            var updateRecords = new NameValueCollection();
            for (int i = 0; i < pendingRecords.Length; i++)
            {
                filter.RowFilter = "Soid = " + pendingRecords[i][1];
                filter[0].Row["Soid"] = pendingRecords[i][0];
                filter[0].Row["SourceId"] = pendingRecords[i][1];
                filter[0].Row["Stage"] = Potential.ClosedWon;
                var potentialXML = Potential.GetUpdatePotentialXML(filter[0].Row["Soid"].ToString(), filter[0].Row["Stage"].ToString());
                updateRecords.Add(filter[0].Row["ZohoID"].ToString(), potentialXML);
            }

如果我计算正确的第 17 行是引发错误的错误。pendingRecords 是一个 object[][] 数组。pendingRecords[i] 是单个记录。pendingRecords[i][0] 是新的 Sales OrderID (SOID),pendingRecords[i][1] 是旧的 SOID(现在是 SourceID)

对这个有帮助吗?是因为我将 SOID 更改为新的 SOID,并且过滤器自动更新吗?我只是不知道

4

1 回答 1

0

好吧,我最终改变了它的工作方式,现在它实际上排序得更好了。由于返回的表的结构,我即将发布的代码有一堆硬编码数字。对于那个很抱歉。从那时起我就学会了不要那样做,但我现在正在做一个不同的项目,当我必须改变程序时会改变它。但这是解决方案。

        var potentials = Server.GetNewPotentials(); //loads all records from server
        for (int i = 0; i < potentials.Length; i++)
        {
            var filter = AllPotentials.DefaultView;
            var result1 = CheckSoidOrSource(potentials[i].Soid, true);
            var result2 = CheckSoidOrSource(potentials[i].SourceID,false) ;
            //This potential can't be found at all so let's add it to our table
            if (result1+result2==0)
            {
                Logger.WriteLine("Found new record. Adding it to DataTable and sending it to Zoho");
                AllPotentials.Add(potentials[i]);
                filter.RowFilter = string.Format("Soid = '{0}'", potentials[i].SourceID);
                var index = AllPotentials.Rows.IndexOf(filter[0].Row);
                ZohoPoster posterInsert = new ZohoPoster(Zoho.Fields.Potentials, Zoho.Calls.insertRecords);
                AllPotentials.Rows[index]["ZohoID"] = posterInsert.PostNewPotentialRecord(3, filter[0].Row);
            }
            //This potential is not found, but has a SourceId that matches a Soid of another record.
            if (result1==0 && result2 == 1)
            {
                Logger.WriteLine("Found a record that needs to be updated on Zoho");
                ZohoPoster posterUpdate = new ZohoPoster(Zoho.Fields.Potentials, Zoho.Calls.updateRecords);

                filter.RowFilter = string.Format("Soid = '{0}'", potentials[i].SourceID);
                var index = AllPotentials.Rows.IndexOf(filter[0].Row);
                AllPotentials.Rows[index]["Soid"] = potentials[i].Soid;
                AllPotentials.Rows[index]["SourceId"] = potentials[i].SourceID;
                AllPotentials.Rows[index]["PotentialStage"] = potentials[i].PotentialStage;
                AllPotentials.Rows[index]["UpdateRecord"] = true;
                AllPotentials.Rows[index]["Amount"] = potentials[i].Amount;
                AllPotentials.Rows[index]["ZohoID"] = posterUpdate.UpdatePotentialRecord(3, filter[0].Row);
            }
        }
        AllPotentials.AcceptChanges();
    }
    private int CheckSoidOrSource(string Soid, bool checkSource)
    {
        var filter = AllPotentials.DefaultView;
        if (checkSource)
            filter.RowFilter = string.Format("Soid = '{0}' OR SourceId = '{1}'",Soid, Soid);
        else
            filter.RowFilter = string.Format("Soid = '{0}'", Soid);

        return filter.Count;
    } 

基本上发生的事情是,当我以这种方式过滤数据时,我注意到了一些关于我的数据的信息。这两个结果只会返回以下结果 (0,0) (0,1) 和 (1,0) (0,0) 表示该表中根本不存在该记录,因此我需要添加它。(1,0) 表示销售订单 ID (Soid) 与表中的另一个 Soid 匹配,因此它已经存在。最后 (0,1) 表示此表中不存在 Soid 但我找到了一条以 Soid 作为源的记录...对我来说这意味着将其作为源的记录已从潜在的销售,这反过来意味着我必须更新记录和 Zoho。这对我来说工作量要少得多,因为现在我不必搜索赢得和丢失的记录,我只需要搜索丢失的记录。更少的代码相同的结果总是一件好事:)

于 2012-05-17T16:42:08.863 回答