作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在加载表单中运行此函数以将信息从我的数据库显示到 c# 中的 dataGridView。问题是表单在尝试访问广告和检索数据之前弹出。这是它在调试器中的运行方式。我运行下面的函数。
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,弹出Window Form。谁能告诉我发生了什么事?
这是 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;
}
}
最佳答案
当它处理 MySQL 命令并从数据库中获取信息时,应用程序似乎有时间绘制表单。
简单的解决方法是这样做:
private void frmMain_Load(object sender, EventArgs e)
{
this.visible = false;
loadData();
this.visible = true;
}
关于c# - 使用 C# 连接到 MySql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14948396/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!