我有一些奇怪的问题。我使用 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 让我发布这个有用的通知。