C#WinForm连接sql server数据库进行增删改查详细步骤(包会)

C#WinForm连接sql server数据库进行增删改查详细步骤(包会)

码农世界 2024-06-14 后端 102 次浏览 0个评论

1 需要下载的软件vs2022社区版,sql server

1.1 vs2022社区版 下载完成后点击新建项目,创建windows窗体应用,如图:

C#WinForm连接sql server数据库进行增删改查详细步骤(包会)

1.2 在创建好的窗体应用中创建一个button控件和一个datagrewview控件,如图所示:

C#WinForm连接sql server数据库进行增删改查详细步骤(包会)

2 下载sql server数据库,创建自己的账户和密码,进行登录 如下图所示:

C#WinForm连接sql server数据库进行增删改查详细步骤(包会)

2.1 创建20240401数据库 在其中创建学生信息表 如下图所示:

C#WinForm连接sql server数据库进行增删改查详细步骤(包会)

3 在vs中点击工具,连接到数据库,输入自己的服务器名字和数据库的账户,密码进行连接 如下图所示:

C#WinForm连接sql server数据库进行增删改查详细步骤(包会)3.1 双击button控件 编写代码 如下所示 注意:代码中的ip 数据库名称,表名称要更换为自己的名称

using System.Data;

using System.Data.SqlClient;

using System.Windows.Forms;

namespace _2024042501

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }

        private void button1_Click(object sender, EventArgs e)

        {

            //连接

            string conStr = "server=DESKTOP-N0NGI; user id = xx; password = 123456; database = 数据库";

            SqlConnection con = new SqlConnection(conStr);

            con.Open();

            //查询

            string sql1 = "select *from 数据库";

            SqlDataAdapter da = new SqlDataAdapter(sql1, con);

            //建表保存并显示

            DataTable dt = new DataTable();

            da.Fill(dt);

            dataGridView1.DataSource = dt;

            con.Close();

            //增加

            con.Open();

            string sql2 = "INSERT INTO 数据库 (姓名, 学号, 班级, 电话)VALUES('John','202205','计算机2班','1987899')";

            SqlCommand mycommand1 = new SqlCommand(sql2, con);

            mycommand1.ExecuteNonQuery();

            con.Close();

            //删除

            con.Open();

            string sql3 = "DELETE FROM 数据库 WHERE 姓名 = 'John'";

            SqlCommand mycommand2 = new SqlCommand(sql3, con);

            mycommand2.ExecuteNonQuery();

            con.Close();

            //更新

            con.Open();

            string sql4 = "UPDATE 数据库 SET 学号 = 202206 WHERE 姓名 = '张三'";

            SqlCommand mycommand3 = new SqlCommand(sql4, con);

            mycommand3.ExecuteNonQuery();

            con.Close();

            

        }

    }

}

 

3.2 点击运行 点击bbutton按钮 即可进行增删改查操做 如图所示

C#WinForm连接sql server数据库进行增删改查详细步骤(包会)

转载请注明来自码农世界,本文标题:《C#WinForm连接sql server数据库进行增删改查详细步骤(包会)》

百度分享代码,如果开启HTTPS请参考李洋个人博客
每一天,每一秒,你所做的决定都会改变你的人生!

发表评论

快捷回复:

评论列表 (暂无评论,102人围观)参与讨论

还没有评论,来说两句吧...

Top