C#增删改查

这篇博客展示了如何使用C#进行数据库的增删改查操作。通过`Course`类定义课程信息,然后在`Form1`窗体中实现添加、查询、修改和删除数据的功能。代码中使用了`SqlConnection`、`SqlCommand`和`SqlDataAdapter`等.NET数据访问组件,并结合`NPOI`库导出数据到Excel。
摘要由CSDN通过智能技术生成

Student.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace project
{
    class Student
    {
        private string sno;//学号
        private string sname;//姓名
        private string ssex;//性别
        private int sage;//年龄

        public string Sno 
        {
            get
            {
                return this.sno;
            }
            set
            {
                this.sno = value;
            }
        }
        public string Sname
        {
            get
            {
                return this.sname;
            }
            set
            {
                this.sname = value;
            }
        }

        public string Ssex
        {
            get
            {
                return this.ssex;
            }
            set
            {
                this.ssex = value;
            }
        }

        public int Sage {

            get
            {
                return this.sage;
            }
            set
            {
                this.sage = value;
            }
        }
        public Student()
        {

        }

        public Student(string sno, string sname, string ssex, int sage)
        {
            this.sno = sno;
            this.sname = sname;
            this.ssex = ssex;
            this.sage = sage;
        }
    }
}
 

course.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace project
{
    class Student
    {
        private string sno;//学号
        private string sname;//姓名
        private string ssex;//性别
        private int sage;//年龄

        public string Sno 
        {
            get
            {
                return this.sno;
            }
            set
            {
                this.sno = value;
            }
        }
        public string Sname
        {
            get
            {
                return this.sname;
            }
            set
            {
                this.sname = value;
            }
        }

        public string Ssex
        {
            get
            {
                return this.ssex;
            }
            set
            {
                this.ssex = value;
            }
        }

        public int Sage {

            get
            {
                return this.sage;
            }
            set
            {
                this.sage = value;
            }
        }
        public Student()
        {

        }

        public Student(string sno, string sname, string ssex, int sage)
        {
            this.sno = sno;
            this.sname = sname;
            this.ssex = ssex;
            this.sage = sage;
        }
    }
}
Form.cs

using System;
using

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值