我在加載表單中運行這個函數來顯示從我的數據庫到c#中的dataGridView的信息。問題是在嘗試訪問廣告之前彈出窗體來檢索數據。這是它在調試器中的運行方式。我運行下面的函數。使用C#連接到MySql
public void loadData()
{
var list = mysql.Select();
try
{
//start from first row
for (int i = 0; i < dataGridView1.RowCount; i++)
{
//insert IDs
dataGridView1[0, i].Value = list[0][i];
//insert Names
dataGridView1[1, i].Value = list[1][i];
for (int j = 0; j < dataGridView1.ColumnCount; j++)
{
if (list[3][j] != null)
{
dataGridView1[j + 2, i].Value = list[3][j];
}
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
然後它調用mysql類中的Select函數並停止在MySqlDataReader並彈出窗口窗體。有人可以告訴我什麼是攻擊?
這裏是Mysql.Select()
public List <string> [] Select()
{
string query = "SELECT id,name,weekday,description FROM employee e INNER JOIN schedule s ON e.id=s.id";
//Create a list to store the result
List<string>[] list = new List<string>[4];
list[0] = new List<string>();
list[1] = new List<string>();
list[2] = new List<string>();
list[3] = new List<string>();
//Open connection
if (this.OpenConnection() == true)
{
//Create Command
MySqlCommand cmd = new MySqlCommand(query, connection);
//Create a data reader and Execute the command
MySqlDataReader dataReader = cmd.ExecuteReader();
//Read the data and store them in the list
while (dataReader.Read())
{
list[0].Add(dataReader["id"] + "");
list[1].Add(dataReader["name"] + "");
list[2].Add(dataReader["weekday"] + "");
list[3].Add(dataReader["description"] + "");
}
//close Data Reader
dataReader.Close();
//close Connection
this.CloseConnection();
//return list to be displayed
return list;
}
else
{
return list;
}
}
替換無意義的冠軍,你的問題的具體問題,請。 – abatishchev 2013-02-19 01:40:27
@AaronLS他/她只是刪除該代碼 - 它在'form_load' – 2013-02-19 01:42:12
你是什麼意思停止?它是否達到了你設置的一個突破點?有錯誤嗎?你有沒有嘗試在while(dataReader.Read())行上放置一個斷點? – Maciej 2013-02-19 01:44:13