博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#中操纵SqlServer数据库
阅读量:6689 次
发布时间:2019-06-25

本文共 1082 字,大约阅读时间需要 3 分钟。

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.SqlClient;
namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void button1_Click(object sender, EventArgs e)
        {
           char[] name;
            int age;
            name = textBox1.Text.ToCharArray();
            age = System.Int32.Parse(textBox2.Text);
            SqlConnection con = new SqlConnection();
            con.ConnectionString = "server=192.168.1.60;database=Test;uid=sa;pwd=123abc!";
            con.Open();
           /*
            SqlDataAdapter 对象。 用于填充DataSet (数据集)。
            SqlDataReader 对象。 从数据库中读取流..
            后面要做增删改查还需要用到 DataSet 对象。
            */
            SqlCommand com = new SqlCommand();
            com.Connection = con;
            com.CommandType = CommandType.Text;
            com.CommandText = "INSERT INTO [Test].[dbo].[stu]([name],[age])VALUES('李',"+age+")";
            SqlDataReader dr = com.ExecuteReader();//执行SQL语
            
            dr.Close();//关闭执行
            con.Close();//关闭数据库
        }
        private void label1_Click(object sender, EventArgs e)
        {
        }
    }
}

转载地址:http://ctuoo.baihongyu.com/

你可能感兴趣的文章
生产者消费者模式
查看>>
tomcat的Context配置,虚拟访问数据
查看>>
ORACLE---添加控制文件
查看>>
Qt中QString,char,int,QByteArray之间到转换
查看>>
Exchange Server 2007邮箱存储服务器的集群和高可用性技术(上)
查看>>
磁盘管理与磁盘阵列RAID
查看>>
Linux学习笔记4-软件安装
查看>>
8.python之面相对象part.8(类装饰器)
查看>>
Spark通过Java Web提交任务
查看>>
Javascript动态加载脚本与样式
查看>>
LINUX用户和组小练习
查看>>
centos 7 配置 iptable-service
查看>>
Spring AOP之简单实践
查看>>
Java序列化漏洞的调研,***和安全监控
查看>>
想要百度信息流效果更好你应该这样投放
查看>>
Oracle教程之Oralce OMF功能详解(三)--使用Oralce OMF管理控制文件
查看>>
C# extern 修饰符的用法
查看>>
Zabbix修正错误两例(只提供解决思路)
查看>>
Redhat6.X 配置HP3PAR7200存储多路径过程
查看>>
Java基础系列19:使用JXL或者POI生成和解析Excel文件
查看>>