DataGridView显示数据库的数据
DataGridView显示数据库的数据时要怎么做?我添加上代码后
private DataTable DT = new DataTable();
private SqlDataAdapter SDA = new SqlDataAdapter();
#endregion
Form1构造函数#region Form1构造函数
public Form1()
{
InitializeComponent();
}
#endregion
连接数据库显示数据#region 连接数据库显示数据
private void Form1_Load(object sender, EventArgs e)
{
SqlConnection conn = new SqlConnection("server=127.0.0.1;database=pubs;uid=sa");
SqlCommand SCD = new SqlCommand("select * from tables", conn);
SDA.SelectCommand = SCD;
SDA.Fill(DT);
dataGridView1.DataSource = DT;
}
======================================================
添加上以后 没点一次按钮 他只的表格就变多了 可是我要查询出来的东西却没有出来
还有dataGridView 能看几张表?