---恢复内容开始---
ExecuteScalar方法
用于执行查询语句,并返回唯一值或者结果集中地第一条记录的第一个字段的值.该方法适用于只有一个结果查询的查询,例如 使用sum,avg,max,min等函数的sql语句.
1 SqlConnection con = new SqlConnection(); 2 con.ConnectionString = "server=.;database=航空订票系统;uid=sa;pwd=;"; 3 SqlCommand com = new SqlCommand(); 4 com.Connection=con; 5 com.CommandText = "select avg(头等舱费用) from 航班表"; 6 try 7 { 8 con.Open(); 9 try 10 { 11 12 Response.Write(com.ExecuteScalar()); 13 } 14 catch (Exception) 15 { 16 Response.Write("查询失败"); 17 } 18 con.Close(); 19 } 20 catch (Exception) 21 { 22 Response.Write("连接打开失败"); 23 con.Close(); 24 }
第12行 用于显示查询结果