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)
{
}
}
}
相关文章
- 01-26SqlServer 不能收缩 ID 为 %s 的数据库中 ID 为 %s 的文件,因为它正由其他进程收缩或为空。
- 01-26asp.net鲜花网站系统VS开发sqlserver数据库web结构C#编程
- 01-26asp.net物流跟踪系统VS开发sqlserver数据库web结构C#编程
- 01-26spark sql 读取kudu表向sqlserver数据库中插入70万条数据
- 01-26C#中往数据库插入空值报错解决方法
- 01-26[c#数据库同步]C#中如何实现datagridview修改与数据库同步
- 01-26SQLSERVER如何获取一个数据库中的所有表的名称、一个表中所有字段的名称
- 01-26Excel文件批量导入SQLSERVER数据库中(利用Foreach容器)
- 01-26C#中,当从数据库中查询到数据,以DataTable类型返回后,如果需要对DataTable中的数据进行筛选,可以选择下面的方式
- 01-26C# 使用字符连接数据库中遇到的问题