gpt4 book ai didi

mysql - VB.NET:将数据从 MySQL 数据库加载到 DataGridView 控件中

转载 作者:行者123 更新时间:2023-11-29 14:05:15 26 4
gpt4 key购买 nike

我想将 MySQL 数据库中的信息放入 DataGridView(DataGridView1)。

我的“MySQL”

ID, Username & Password

连接字符串

"server=localhost;user id=root;password=;database=exdb"

我的数据库(exdb)中的表是“users”,我的项目中有所有必要的连接器、MySQL 导入和重新引用。

我该怎么办?

最佳答案

是的,您可以在线搜索并找到答案。试一试这个简单的

System.Data;
System.Data.SqlClient

//create connection , replace userID/password if you have.
MySqlConnection con =
new MySqlConnection(@"server=localhost;user id=root;password=;database=exdb");
con.Open();
//user the table name as per yours
MySqlDataAdapter adp = new MySqlDataAdapter("Select * from table1;" ,con);

DataSet ds = new DataSet();
adp.Fill(ds);
//change name according to your datagridview
dataGridView1.DataSource = ds;
dataGridView1.DataBind();

关于mysql - VB.NET:将数据从 MySQL 数据库加载到 DataGridView 控件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14475918/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com