3

我有一些奇怪的问题。我使用 MySQL Connector.NET,但MySqlReader.Read()有时返回 true,有时返回 false。MySqlReader.HasRows在这两种情况下都是正确的,在 VisualStudio 中我可以看到 reader 对象包含所有值。

为什么会这样?

这是我的代码:

MySqlCommand sqlCommand = new MySqlCommand(sqlCode, this._conn);
MySqlDataReader rdr = sqlCommand.ExecuteReader();
PopulateMessage("--> " + serverName + ": " + dbName);
int fields = rdr.VisibleFieldCount;

//make headers
int[] fmaxl = new int[fields];
string[] headers = new string[fields];
List<string[]> vals = new List<string[]>();
if (rdr.HasRows)
{
        for (int hi = 0; hi < fields; hi++)
        {
                string val = rdr.GetName(hi);
                headers[hi] += val;
                fmaxl[hi] = val.Length;
        }
        while (rdr.HasRows && rdr.Read()) // <-- here the Read() method returns 
                                          //     false or true sometimes
                                          //     while HasRows is true
        {
                ...

EIDT:rdr例如 99 行的值(在 VS 中检查),第一次调用该Read()方法返回 false。感谢 Joachim 让我发布这个有用的通知。

4

1 回答 1

1

这个 HasRows 属性并不存在于所有版本的 .net 中。为什么不这样重铸你的代码呢?

boolean firstRow = true;
while (rdr.Read()) 
{
   if (firstRow) {   // get the column names, but only once 
       firstRow = false;
       for (int hi = 0; hi < fields; hi++)
       {
            string val = rdr.GetName(hi);
            headers[hi] += val;
            fmaxl[hi] = val.Length;
       }
    }

    ... //process each row.
}

完成了这种东西的吨位,我知道这很好用。

于 2013-07-15T12:19:19.353 回答