欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 文旅 > 明星 > C#窗体程序学生管理

C#窗体程序学生管理

2025/4/3 13:35:34 来源:https://blog.csdn.net/weixin_44498188/article/details/144223207  浏览:    关键词:C#窗体程序学生管理

8aeb62eee9134052afb93e4125256cae.png902ceb8888224e969fea769dac1613b6.png

 

a1c603c186ec4ba78872429677fd88c0.png

代码如下:

 

public static string constr = "Data Source=FUSHUAI;Initial Catalog=product;Integrated Security=True";

public static SqlConnection con = new SqlConnection(constr);
private void Form1_Load(object sender, EventArgs e)
{
    gettable();
}

 

//执行查询操作
public static DataTable query(string sql)
{
    SqlDataAdapter sda = new SqlDataAdapter(sql, constr);
    DataTable dtable = new DataTable();
    sda.Fill(dtable);
    return dtable;

}
//执行更新操作
public static string update(string sql)
{
    try
    {
        SqlConnection conn = new SqlConnection("Data Source=.;Initial Catalog=数据表;Integrated Security=True");  // 打开数据库连接
        conn.Open();
        SqlCommand cmd = new SqlCommand(sql, conn);
        int result = cmd.ExecuteNonQuery();
        conn.Close();
        return "success";
    }
    catch (Exception e)
    {
        MessageBox.Show(e.Message);
        return e.ToString();
    }

}
// 添加按钮
private void button1_Click(object sender, EventArgs e)
{
    string id = textBox1.Text.Trim();  // 学号
    string name = textBox2.Text.Trim();// 名称
    string gender = comboBox1.Text.Trim();// 性别
    string age = textBox3.Text.Trim();// 年龄

    string intosql = $"insert into [Students] values('{id}','{name}','{gender}','{age}')";
    update(intosql);
    MessageBox.Show("添加成功");
    gettable();
}

public void gettable()
{
    string sql = "select * from students";
    dataGridView1.DataSource = query(sql);
}
// 删除按钮
private void button2_Click(object sender, EventArgs e)
{
    string id = dataGridView1.SelectedRows[0].Cells[0].Value.ToString();  // 学号
    string intosql = $"delete from [Students] where Studentid='{id}'";
    update(intosql);
    MessageBox.Show("删除成功");
    gettable();
}

 

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

热搜词