资源描述:
《C#网络应用编程基础 教学课件 作者 马骏习题答案 第08章 习题解答.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、第8章ADO.NET与SQLServer习题8参考解答1.使用保持连接的方式编写程序,计算各年级平均成绩,并显示结果。【解答】usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Data.SqlClient;namespace习题8_6_1{publicpartialclassForm1:Form{public
2、Form1(){InitializeComponent();}//添加Button按钮在ListBox中显示结果privatevoidbutton1_Click(objectsender,EventArgse){listBox1.Items.Add("年级平均成绩");stringconnectionString=Properties.Settings.Default.MyDatabaseConnectionString;//根据连接字符串创建SqlConnection实例SqlConnectionconn=newSqlConnection(connectionString);/
3、/创建SqlCommand实例,并设置SQL语句和使用的连接实例SqlCommandcmd=newSqlCommand();cmd.CommandText="selectsubstring(学号,1,2)as年级,avg(成绩)as平均成绩fromMyTable2groupbysubstring(学号,1,2)";cmd.Connection=conn;try{conn.Open();SqlDataReaderr=cmd.ExecuteReader();while(r.Read()==true){listBox1.Items.Add(string.Format("{0}级{1}"
4、,r[0],r[1]));}r.Close();}catch(Exceptionerr){MessageBox.Show(err.Message,"计算成绩失败");}finally{conn.Close();5第8章ADO.NET与SQLServer}}}}2.使用保持连接的方式编写程序,查询MyTable2中不及格学生的学号,姓名,性别,成绩。并将结果在ListBox中显示出来。【解答】usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSys
5、tem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Data.SqlClient;namespace习题8_6_2{publicpartialclassForm1:Form{publicForm1(){InitializeComponent();}privatevoidbutton1_Click(objectsender,EventArgse){listBox1.Items.Add("学号姓名性别成绩");stringconnectionString=Properties.Settings.Defa
6、ult.MyDatabaseConnectionString;//根据连接字符串创建SqlConnection实例SqlConnectionconn=newSqlConnection(connectionString);//创建SqlCommand实例,并设置SQL语句和使用的连接实例SqlCommandcmd=newSqlCommand();cmd.CommandText="Select学号,姓名,性别,成绩FromMyTable2Where(成绩<60)";cmd.Connection=conn;try{conn.Open();SqlDataReaderr=cmd.Execu
7、teReader();while(r.Read()==true){listBox1.Items.Add(string.Format("{0}{1}{2}{3}",r[0],r[1],r[2],r[3]));}r.Close();}catch(Exceptionerr){MessageBox.Show(err.Message,"查询成绩失败");}finally{5第8章ADO.NET与SQLServerconn.Close();}}}}3.编写程序,以“[编码]名称”的样式在co