xt

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

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

       private void button1_Click(object sender, EventArgs e)
        {

            SqlConnection x = new SqlConnection("Data Source=.;Initial Catalog=XT;Integrated Security=True");//创建连接对象
            x.Open();//打开链接
            
           
           //从表中提取数据 
            //string str = string.Format("select City from xt");
           //DataTable y = new DataTable();//创建一个数据表
            //SqlDataAdapter z = new SqlDataAdapter(str, x);//利用str字符串和x数据库连接对象创建适配器
            //z.Fill(y);//将适配器内的数据内容填充到数据表中

           
           //插入
           // string str = string.Format("insert into xt(ID, LastName, FirstName, Address, City) values (12, '林玲', '林笨笨','2号','商城')");
            //string str = string.Format("insert into xt (ID, LastName, City) values (22, '小梅', '忘了')");
            
           //删除
            int ID = 3;
            string str = string.Format("delete from xt where ID = " + ID + "");


            SqlCommand n = new SqlCommand(str, x);//创建Command对象,两个参数:需要执行的str,数据连接对象x
            int i = n.ExecuteNonQuery();//执行命令(多用于执行增加、删除、修改数据,返回受影响的行数)
            
           
           MessageBox.Show("成功!");
        }
    }
}

 

转载于:https://www.cnblogs.com/qq2424260747/p/5005092.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值