ADO.NET基础学习 二(Command对象)
程序员文章站
2022-10-18 13:07:34
②command对象用来操作数据库。(三个重要的方法:ExecuteNonQuery(),ExecuteReader(),ExecuteScalar()) ⑴以update(改数据)为例,用到ExecuteNonQuery()方法(执行SQL语句,返回受影响行) 点击事件(button2) 执行前数 ......
②command对象用来操作数据库。(三个重要的方法:ExecuteNonQuery(),ExecuteReader(),ExecuteScalar())
⑴以update(改数据)为例,用到ExecuteNonQuery()方法(执行SQL语句,返回受影响行)
private void button2_Click(object sender, EventArgs e) { SqlConnection conn =new SqlConnection("server=.;Initial catalog=db_PWMS;integrated security=SSPI"); conn.Open();//老规矩,先连接 try { SqlCommand cmd = new SqlCommand();//实例操作项cmd cmd.Connection = conn;//操作conn这个数据库 cmd.CommandText = "update Table_1 set Prices =3333 where Origin ='国产'";//操作这样一句SQL语句 cmd.CommandType = CommandType.Text;//书上这么写的,不知道干嘛的,以后知道了再说。去掉这句话也没事。 cmd.ExecuteNonQuery();//command对象重要的三个方法之一,执行增删改 int i = Convert.ToInt32(cmd.ExecuteNonQuery()); label2.Text = i + "条数据发生改动"; } catch (Exception ex){ MessageBox.Show(ex.Message); } }
点击事件(button2)
执行前数据库
执行后
⑵以各种姿势查数据ExecuteScalar()方法(执行SQL语句,返回结果集中第一行第一列),但此方法通常与聚合函数一起使用
此方法的聚合函数
说明 | |
AVG() | 平均值 |
count(列名)/count(*) | 此列值的计数(不包括空值)/此表所有行的计数(包括空值) |
max() | 最大值 |
min() | 最小值 |
sum() | 和 |
以count()和max()为例
private void button3_Click(object sender, EventArgs e) { conn = new SqlConnection("server=.;Initial catalog=db_PWMS;integrated security=SSPI"); conn.Open(); try { string s1 = "select count (*) from Table_1";//表数量count() string s2 = "select max (Prices) from Table_1";//Prices最大值max() SqlCommand cmd = new SqlCommand(s1,conn); SqlCommand cmd1 = new SqlCommand(s2,conn); int i = Convert.ToInt32(cmd.ExecuteScalar());//对象转int类型 int j = Convert.ToInt32(cmd1.ExecuteScalar()); label2.Text = i+"条数据"; label1.Text = "最贵的" + j; } catch (Exception ex){ MessageBox.Show(ex.Message); } }
⑶ExecuteReader()方法(执行SQL语句,生成一个SqlDataReader对象的实例,返回 一个SqlDataReader对象)
private void button5_Click(object sender, EventArgs e) { SqlConnection conn = new SqlConnection("server=.;Initial catalog=db_PWMS;integrated security=SSPI"); conn.Open();//连接并打开 SqlCommand cmd = new SqlCommand("select * from Table_1",conn);//操作 SqlDataReader sdr = cmd.ExecuteReader();//ExecuteReader方法实例化个SqlDataReader对象 while (sdr.Read())//SqlDataReader的Read()方法 循环读取数据 { label3.Text += sdr[1].ToString();//读取第一列 listView1.Items.Add(sdr[2].ToString());//读取第二列 } }
下一篇: 使用Emit实现给实体赋值
推荐阅读
-
Python入门基础学习(面向对象)
-
PHP学习记录之面向对象(Object-oriented programming,OOP)基础【类、对象、继承等】
-
Python面向对象编程基础解析(二)
-
Spring学习指南-第二章-Spring框架基础
-
sqlite入门基础学习(二):sqlite3_get_table,sqlite3_free_table-CSDN实例
-
类与对象 - Java学习(二)
-
脱离脚手架来配置、学习 webpack4.x (二)基础搭建loader 配置 css、scss
-
[ Java学习基础 ] Java的对象容器 -- 集合
-
JavaScript 基础(二) - 创建 function 对象的方法, String对象, Array对象
-
Python基础学习(二)