C#窗体程序学生管理

代码如下:

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();

}

相关推荐
数据小小爬虫几秒前
如何利用Python爬虫获取商品历史价格信息
开发语言·爬虫·python
Gao_xu_sheng3 分钟前
Java程序打包成exe,无Java环境也能运行
java·开发语言
NiNg_1_2348 分钟前
Python的sklearn中的RandomForestRegressor使用详解
开发语言·python·sklearn
听见~10 分钟前
SQL优化
数据库·sql
谢家小布柔11 分钟前
java中的继承
java·开发语言
黑色叉腰丶大魔王12 分钟前
《基于 Python 的网页爬虫详细教程》
开发语言·爬虫·python
l1384942745117 分钟前
Java每日一题(2)
java·开发语言·游戏
晓纪同学25 分钟前
QT创建一个模板槽和信号刷新UI
开发语言·qt·ui
ROCKY_81725 分钟前
Mysql复习(一)
数据库·mysql
夜光小兔纸25 分钟前
oracle dblink 的创建及使用
数据库·oracle