0

我已经为我的 C# 程序编写了一个 SQL 查询,但是当我尝试运行该查询时,我得到了这个错误

System.IndexOutOfRangeException:

while (DRorder.Read())我试图更改查询顺序以查看是否只有那一个这样做,并且我注意到当我有代码尝试转换这 3 列中的至少 2 列(ADRES, LEV, TAAL)时,它只会给我这个错误。

// the code that gives the error    
SqlCommand getlist = new SqlCommand("select * from BESW where BEST = @best", Connectie.connMEVO);
getlist.Parameters.Add("@best", SqlDbType.VarChar).Value = data.corrigeerbestnr;

DRorder = getlist.ExecuteReader();

while (DRorder.Read())
{
    dateTimePicker1.Value = Convert.ToDateTime(DRorder["BESTEL"]);
    dateTimePicker2.Value = Convert.ToDateTime(DRorder["PLAN"]);
    comboBox2.Text = DRorder["ADRES"].ToString();
    comboBox1.Text = DRorder["LEV"].ToString();
    textBox8.Text = DRorder["TAAL"].ToString();
}

但是,当我将查询拆分为 3 个几乎相同的查询,其中 3 列中的每一列都可能出现错误时,它突然可以正常工作,没有任何问题。

// this is the code that im currently using without error    
SqlCommand getlist = new SqlCommand("select BESTEL, [PLAN], ADRES from BESW where BEST = @best", Connectie.connMEVO);
getlist.Parameters.Add("@best", SqlDbType.VarChar).Value = data.corrigeerbestnr;

DRorder = getlist.ExecuteReader();

while (DRorder.Read())
{
    dateTimePicker1.Value = Convert.ToDateTime(DRorder["BESTEL"]);
    dateTimePicker2.Value = Convert.ToDateTime(DRorder["PLAN"]);
    comboBox2.Text = DRorder["ADRES"].ToString();
}

SqlCommand getlist2 = new SqlCommand("select LEV from BESW where BEST = @best", Connectie.connMEVO);
getlist2.Parameters.Add("@best", SqlDbType.VarChar).Value = data.corrigeerbestnr;

DRorder = getlist2.ExecuteReader();

while (DRorder.Read())
{
    comboBox1.Text = DRorder["LEV"].ToString();
}

SqlCommand getlist3 = new SqlCommand("select TAAL from BESW where BEST = @best", Connectie.connMEVO);
getlist3.Parameters.Add("@best", SqlDbType.VarChar).Value = data.corrigeerbestnr;

DRorder = getlist3.ExecuteReader();

while (DRorder.Read())
{
    textBox8.Text = DRorder["TAAL"].ToString();
}

我不知道它为什么这样做,因为我的程序中的所有其他查询都有效,我什至有读取整个表的查询,并且这些查询不会给while循环中的这些字段带来任何问题。

现在我的问题是,为什么这些代码块中的一个工作,而另一个给出错误?也许如果有人知道这个问题的解决方案,我想听听它,因为我觉得最好将它全部放入 1 个查询中。

我知道我忘记将Dispose查询放在这些代码块中。

有关该问题的其他信息:当我运行单个查询代码时,给出错误的列是,LEV但是如果我更改列的顺序,则问题将由这 3 个(、、、)中列出的第二ADRESLEV给出TAAL

编辑:“新”代码(数据库有 28 列)

// the code that gives the error    
SqlCommand getlist = new SqlCommand("select * from BESW where BEST = @best", Connectie.connMEVO);
getlist.Parameters.Add("@best", SqlDbType.VarChar).Value = data.corrigeerbestnr;

DRorder = getlist.ExecuteReader();

while (DRorder.Read())
{
    if (!DRorder.IsDBNull(10)) { dateTimePicker1.Value = Convert.ToDateTime(DRorder[10]); }
    if (!DRorder.IsDBNull(11)) { dateTimePicker2.Value = Convert.ToDateTime(DRorder[11]); }
    if (!DRorder.IsDBNull(7)) { comboBox1.Text = DRorder[7].ToString(); }
    if (!DRorder.IsDBNull(8)) { comboBox2.Text = DRorder[8].ToString(); }
    if (!DRorder.IsDBNull(25)) { textBox8.Text = DRorder[25].ToString(); }
}
4

3 回答 3

1

这个查询

select BESTEL,[PLAN],ADRES from BESW where BEST=@best

只返回 3 列,你不能拿DRorder["LEV"], DRorder["TAAL"]

在第一个 SELECT 中包含 TAAL 和 LEV

SqlCommand getlist = new SqlCommand("select BESTEL,[PLAN],ADRES, LEV, TAAL from BESW where BEST=@best", Connectie.connMEVO);

更新

IndexOutOfRangeException 表示“未找到具有指定名称的列”。

尝试按索引取值

comboBox1.Text = DRorder[3].ToString();
textBox8.Text = DRorder[4].ToString();
于 2015-04-01T06:30:37.597 回答
1

在选择查询中使用明确的列名:

select BESTEL, PLAN, ADRES, LEV, TAAL from ...

和/或,正如@Ash 指出的,使用索引检索列:

comboBox1.Text = DRorder[3].ToString();

不相关,但我也可以建议:

if (!DRorder.IsDBNull(3)) comboBox1.Text = DRorder[3].ToString();

编辑,远程调试:

try
{

    DRorder = getlist.ExecuteReader();

    while (DRorder.Read())
    {
        Console.WriteLine("BESTEL: " + DRorder.GetOrdinal("BESTEL").ToString());
        Console.WriteLine("PLAN: " + DRorder.GetOrdinal("PLAN").ToString());
        Console.WriteLine("ADRES: " + DRorder.GetOrdinal("ADRES").ToString());
        Console.WriteLine("LEV: " + DRorder.GetOrdinal("LEV").ToString());
        Console.WriteLine("TAAL: " + DRorder.GetOrdinal("TAAL").ToString());

        if (!DRorder.IsDBNull(10)) { dateTimePicker1.Value = Convert.ToDateTime(DRorder[10]); }
        if (!DRorder.IsDBNull(11)) { dateTimePicker2.Value = Convert.ToDateTime(DRorder[11]); }
        if (!DRorder.IsDBNull(7)) { comboBox1.Text = DRorder[7].ToString(); }
        if (!DRorder.IsDBNull(8)) { comboBox2.Text = DRorder[8].ToString(); }
        if (!DRorder.IsDBNull(25)) { textBox8.Text = DRorder[25].ToString(); }
    }
}
catch (Exception ex)
{
    Console.WriteLine(ex);
}

我假设您没有在 .read() 范围之外访问 DRorder,并且在调用它时没有其他操作正在操作数据。

你能报告一下上面的代码输出什么吗?

于 2015-04-01T07:27:16.853 回答
0

似乎它不能作为 1 个查询工作的原因是我正在填充的组合框TextChange event在查询期间触发了并且由于覆盖了阅读器。

于 2015-04-01T09:13:14.877 回答