zoukankan      html  css  js  c++  java
  • 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("成功!");
            }
        }
    }
  • 相关阅读:
    7maven依赖排除
    5maven生命周期
    4maven依赖范围、依赖有效性
    3maven常用命令和配置依赖
    1maven概念作用
    6在Eclipse中创建maven和修改默认配置
    2maven下载与配置
    Class 'org.apache.tomcat.jdbc.pool.DataSource' not found
    17 alternatives to your default image viewer on Fedora
    zip压缩包解压后的文件名是乱码?
  • 原文地址:https://www.cnblogs.com/qq2424260747/p/5005092.html
Copyright © 2011-2022 走看看