标签:winform style blog io color 使用 for sp 数据
对于学习数据库的人来说,数据库的增删改可谓是最基本的了(小编其实也只是一个小白=-=),这篇文章,小编将于大家讲解数据库增删改操作
在执行数据库增删改的时候主要使用的:Command 类 ExecuteNonQuery执行命令,此命令带有返回值(int)
下面介绍对数据库执行操作的具体步骤:
1 string s = "server=.;database=SampleDb;Integrated Security=True"; 2 SqlConnection c = new SqlConnection(s); 3 c.Open(); 4 SqlCommand command = new SqlCommand(); 5 6 string sql="Insert into Lesson(Id,name) values(‘bzu001‘,‘张三‘)" 7 command.Connection = c; 8 command.CommandText = sql; 9 int n = command.ExecuteNonQuery(); 10 Messagebox.show("添加了"+n+"数据");
标签:winform style blog io color 使用 for sp 数据
原文地址:http://www.cnblogs.com/boy1025/p/4079511.html