欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

C#访问SQLServer增删改查代码实例

时间:2020-12-19 10:02:54|栏目:.NET代码|点击:

一个专门实现访问sql server数据库增删改查的操作代码,分享给大家,具体内容如下

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;

namespace WindowsFormsApplication1
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    }

    //查询
    private void button1_Click(object sender, EventArgs e)
    {
      string MyConn = "server=127.0.0.1;uid=sa;pwd=123654;database=libbook;Trusted_Connection=no";//定义数据库连接参数
      SqlConnection MyConnection = new SqlConnection(MyConn);//定义一个数据连接实例
      SqlCommand MyCommand = new SqlCommand("SELECT * FROM 图书借阅", MyConnection); //定义一个数据库操作指令
      SqlDataAdapter SelectAdapter = new SqlDataAdapter();//定义一个数据适配器
      SelectAdapter.SelectCommand = MyCommand;//定义数据适配器的操作指令
      DataSet MyDataSet = new DataSet();//定义一个数据集
      MyConnection.Open();//打开数据库连接
      SelectAdapter.SelectCommand.ExecuteNonQuery();//执行数据库查询指令
      MyConnection.Close();//关闭数据库
      SelectAdapter.Fill(MyDataSet);//填充数据集
      DataGrid1.DataSource = MyDataSet.Tables[0];
      //DataGrid1.DataBind();//将数据表格用数据集中的数据填充
    }

    //添加
    private void button2_Click(object sender, EventArgs e)
    {
      string MyConn = "server=127.0.0.1;uid=sa;pwd=123654;database=libbook;Trusted_Connection=no";
      SqlConnection MyConnection = new SqlConnection(MyConn);
      string MyInsert = "insert into 图书借阅 (图书编号,读者编号,续借次数) values ('" + Convert.ToString(textBox2.Text) + "','" +
        Convert.ToString(textBox3.Text)+ "','"+Convert.ToInt32(textBox4.Text)+ "')";
      SqlCommand MyCommand = new SqlCommand(MyInsert, MyConnection);
      try//异常处理
      {
        MyConnection.Open();
        MyCommand.ExecuteNonQuery();
        MyConnection.Close();
      }
      catch (Exception ex)
      {
        MessageBox.Show(ex.Message);
      }
    }

    //更新
    private void button3_Click(object sender, EventArgs e)
    {
      string MyConn = "server=127.0.0.1;uid=sa;pwd=123654;database=libbook;Trusted_Connection=no";
      SqlConnection MyConnection = new SqlConnection(MyConn);
      string MyUpdate = "Update 图书借阅 set 操作员='" + textBox2.Text + "'" + " where 借阅编号=" + "'" + textBox1.Text + "'";
      SqlCommand MyCommand = new SqlCommand(MyUpdate, MyConnection);
      try
      {
        MyConnection.Open();
        MyCommand.ExecuteNonQuery();
        MyConnection.Close();
        textBox1.Text = "";
      }
      catch (Exception ex)
      {
        MessageBox.Show(ex.Message);
      }
    }

    //删除
    private void button4_Click(object sender, EventArgs e)
    {
      string MyConn = "server=127.0.0.1;uid=sa;pwd=123654;database=libbook;Trusted_Connection=no";
      SqlConnection MyConnection = new SqlConnection(MyConn);
      string MyDelete = "Delete from 图书借阅 where 借阅编号=" + textBox1.Text;
      SqlCommand MyCommand = new SqlCommand(MyDelete, MyConnection);
      try
      {
        MyConnection.Open();
        MyCommand.ExecuteNonQuery();
        MyConnection.Close();
        textBox1.Text = "";
      }
      catch (Exception ex)
      {
        MessageBox.Show(ex.Message);
      }
    }
  }
}

 数据库如下;


winform中查询成功;


插入时,因为借阅编号为自增,不能插入值,会自己生成;



更新,外键冲突;插入的图书编号为000999,无此图书,故出错;


插入成功;


更新操作员为"王老师";


删除借阅编号为31的记录;


上一篇:C#中datagridview的EditingControlShowing事件用法实例

栏    目:.NET代码

下一篇:Unity OnGUI实时显示游戏FPS

本文标题:C#访问SQLServer增删改查代码实例

本文地址:http://www.codeinn.net/misctech/34230.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有