您好,我在阅读时遇到问题MySqlDataReader
。我已经尝试更改while()
为if()
,然后它起作用了。所以我做错了什么while (Reader.Read())
。感谢您的回答。(今天的另一个问题已解决,评论的人帮助了我xd)
using (MySqlCommand cmd = new MySqlCommand
("SELECT * FROM `citationer`", mysqlCon))
{
try
{
MySqlDataReader Reader = cmd.ExecuteReader();
while (Reader.Read()) // this part is wrong somehow
{
citationstexter.Add(Reader.GetString(loopReading)); // this works
loopReading++; // this works
}
Reader.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}